Viewing 12 posts - 1 through 12 (of 12 total)
Chris, is there any any Microsoft official document which states this?
Jeff, is there a link for what u just mentioned?
Thanks both
October 22, 2010 at 7:23 am
I have one question here
Does SQL Server guarantee that update will be done strictly in top down manner?
I didnt find it writtem anywhere in BOL.
October 20, 2010 at 6:35 am
-- it needs to have a clustered index on the orderno column
CREATE TABLE #test (ID int, OrderNo varchar(20), PhoneID varchar(20), CONSTRAINT PK_T1 PRIMARY KEY CLUSTERED (OrderNo, ID));
INSERT INTO...
August 19, 2010 at 6:42 am
It cud be any no between 1 and 20 and in some rare cases more than 20.
August 17, 2010 at 7:29 am
but if we are using varchar datatype sql s. will reserve space as much required for actual value.Any say??
August 5, 2010 at 1:08 am
Thanks Paul!
More the query is complex more possible plans are possible and SQL Sever is not going to pick up best one necessarily.
Best design is one which is simple.
July 19, 2010 at 3:47 am
Thanks Gail
strating with simple and smaller queries seems to be right approach.
July 19, 2010 at 2:06 am
I understand that upto a large extent it depends on scenerio on hand but sometimes task is so big and complicated that it becomes difficult to decide which approach...
July 19, 2010 at 1:41 am
this question seems to be contradictory...
July 6, 2010 at 3:53 am
I have one more question, if two tables are refering each other how can we truncate both tables?
May 19, 2009 at 9:03 pm
I got following error while compiling this x_TruncateTable proc:
Server: Msg 197, Level 15, State 1, Procedure x_TruncateTable, Line 126
EXECUTE cannot be used as a source when inserting into a table...
February 2, 2009 at 11:53 pm
Viewing 12 posts - 1 through 12 (of 12 total)