Viewing 15 posts - 41,956 through 41,970 (of 49,571 total)
James Zhang (1/6/2009)
do you think the problem is on the OS side or on the storage side?
< Shrug > Out of my area of expertise. Absolutely no idea.
Anything interesting...
January 6, 2009 at 12:47 pm
kathyoshea (1/6/2009)
Select the data and use the order by in the loading of the table that is returned.
This works in all the testing I've done....
January 6, 2009 at 11:47 am
IO sub-system glitch? It's pretty much the only thing that comes to mind.
I assume there's all sorts of errors in the error log about 'cannot open file', etc.
Got a...
January 6, 2009 at 11:32 am
Please don't cross post. It just wastes peoples time and fragments replies.
No replies to this thread please. Direct replies to: http://www.sqlservercentral.com/Forums/Topic630817-266-1.aspx
January 6, 2009 at 11:31 am
tfifield (1/6/2009)
Wow! I never thought about the parallel problem. It gets uglier all the time. I'd have to tweak MAXDOP in order to guarantee that it was...
January 6, 2009 at 11:27 am
Franco_1 (1/6/2009)
VALUES (@ProjectName,@Description,@RequestedBy,(select deptID from Department where Department=@Dept) as @DeptID)
The source for an insert can be either VALUES or SELECT, not a combination.
Try this:
INSERT INTO tblProject...
January 6, 2009 at 11:21 am
Lowell (1/6/2009)
you need to track changes in the TEMPDB? maybe you mentioned the wrong db?
In 2005/2008, the inserted and deleted tables are materialised from the row version store that's...
January 6, 2009 at 11:14 am
branovuk (1/6/2009)
Gail, for me time is not crucial, most important is valid restoration to the point of time. So, I think to go with full + (often) diff backup.
In that...
January 6, 2009 at 11:13 am
Marios Philippopoulos (1/6/2009)
DECLARE @ActionType char(1)SELECT @ActionType = CASE
...
January 6, 2009 at 10:22 am
SELECT OBJECTPROPERTY(Object_ID('TableName'),'TableHasPrimaryKey')
Or, if you want to check all the tables.
SELECT name, OBJECTPROPERTY(Object_ID,'TableHasPrimaryKey') FROM sys.tables
It's hard to recommend a script to auto-generate primary keys, because the question is, what does the...
January 6, 2009 at 10:07 am
Grant Fritchey (1/6/2009)
January 6, 2009 at 9:13 am
Greg Edwards (1/6/2009)
January 6, 2009 at 8:59 am
Grant Fritchey (1/6/2009)
I must be old, D&D used lots (and lots and lots) of six-sided dice. Now, Traveller, there were the decimal dice at work.
Which edition was that? I know...
January 6, 2009 at 8:55 am
Please post table definitions and sample data. Read this to see the best way to post this to get quick responses.
http://www.sqlservercentral.com/articles/Best+Practices/61537/
January 6, 2009 at 8:50 am
mark (1/6/2009)
January 6, 2009 at 7:39 am
Viewing 15 posts - 41,956 through 41,970 (of 49,571 total)