Viewing 13 posts - 451 through 463 (of 463 total)
Assuming the PK is also a clustered index, using a GUID will lead to a lot of page splits. It will also take 16 bytes in any indexes that reference...
May 31, 2007 at 9:22 am
I think it's handy to understand if you have the time and inclination, but for the most part you don't need to know it in detail - just knowing that...
May 30, 2007 at 12:44 pm
Assuming both DBs are identical in terms of objects (especially indexes) and similar in terms of data, you may want to run the comparison again ... assuming it still shows...
May 30, 2007 at 11:09 am
In my limited understanding : statistics are used by the optimiser to determine the most efficient query plan, including which indexes to use and how. Using an index to identify...
May 30, 2007 at 8:54 am
You said in your initial post that the dev execution plan was more efficient than the production plan - how so exactly?
May 30, 2007 at 8:25 am
A view is an interesting solution that I haven't seen before. I suspect it probably has as much (if not more) overhead than passing XML, plus an additional effort in...
May 30, 2007 at 7:16 am
ISNULL will work just as well, but it is specific to SQL.
May 18, 2007 at 11:39 am
Try:
strSql11=" insert into TempItem (intId,intWebId, intDataType, intNavid ) values (" & intId & ", " & intWebId & ", " & intDataType & ", COALESCE(" & intNavId & ",0) )...
May 17, 2007 at 2:58 pm
Maybe this should be approached by determining the minimum knowledge necessary to be a mid-level DBA; someone that doesn't have that knowledge would be a junior DBA. I would certainly expect...
May 4, 2007 at 8:05 am
If you don't mind the id having owner permissions on that database, I don't think it makes any difference.
May 1, 2007 at 3:34 pm
A primary key is a unique index (hence it is a constraint).
A clustered index is one that determines the way that the data is sorted (and in fact stored)...
May 1, 2007 at 3:08 pm
The other processes are using the same connection? Or are you talking about global temporary tables?
March 2, 2007 at 11:07 pm
Re. max row size, standard varchar and nvarchar can exceed the row limits in 2005
http://msdn2.microsoft.com/en-us/library/ms186981.aspx
Very handy for me as I'm converting some columns from varchar(4000) to nvarchar.
January 26, 2007 at 7:35 am
Viewing 13 posts - 451 through 463 (of 463 total)