Viewing 15 posts - 7,576 through 7,590 (of 7,602 total)
I too don't like a "t"|"tb[l]" prefix, no least of all because a view can be changed to a table and vice-versa. Column prefixes, of any type, are even worse.
I do...
November 14, 2006 at 10:01 am
No, "wrong situation" refers primarily to an application being added to the server. And not necessarily a full-blown business app either.
Say, instead, Java applets are added to the server. ...
August 21, 2006 at 11:10 am
>> How much memory does SQL use on startup? <<
I disagree about the relevance of this q. This knowledge is not only useful but vital for a senior DBA. Otherwise,...
August 21, 2006 at 9:18 am
Split the varchar and int portions for storage purposes only. You can still combine them for display, etc..
So, create two new columns, one varchar and one (small)int, copy the existing...
July 25, 2006 at 9:28 am
I recommend (Philip) Pratt's "A Guide to SQL". I used it for db classes I taught and thought it was excellent for students.
July 25, 2006 at 9:15 am
All those LEFT JOINs will kill your performance.
But, would you really ever need to process the Item master table? Wouldn't you be more likely to be processing the Applications, etc.,...
July 25, 2006 at 9:07 am
I would think that the first time the proc is run, and any future time that it has been paged out of the cache, there will be more overhead for...
July 25, 2006 at 8:46 am
Very sweet!
But why the extra overhead of declaring and setting a variable? Why not just return the calc'd value?
...
BEGIN
RETURN CASE WHEN ...
END
July 25, 2006 at 8:36 am
Make sure the table is not fragmented. You will have to add an index to check and/or adjust fragmentation. Once the table is compacted, if necessary, you can drop the...
June 28, 2006 at 12:37 pm
The method below creates and loads a table data type to hold the desired datetime ranges. The defaults are as you specified -- from 17:00 the previous day to 17:00...
June 28, 2006 at 12:32 pm
If you want to check the identity column specifically, you can use the reserved name IDENTITYCOL, which will always refer to the identity column of any table:
SELECT * FROM tableName
WHERE...
June 28, 2006 at 12:06 pm
What about the overhead of the comments themselves? This if often overlooked. It's my understanding that SQL does load comments (even full-line/multi-line comments) into the proc cache. So lots of...
June 13, 2006 at 10:26 am
One of my concerns with a sequence table, aside from the additional I/O and other overhead, is that you cannot then easily insert multiple invoices in one statement.
If, for example,...
May 17, 2006 at 10:21 am
>> "SET IDENTITY_INSERT ON" would be needed for prior year, with logic similar to above, but hopefully that would be relatively rare. <<
In fact, in most systems, especially dealing with...
May 17, 2006 at 8:59 am
Yes. Or possibly even a single identity column that was re-seeded each year to yy00000[0]; the "-" could be added prior to display just for the "visual effect" for the user. ...
May 17, 2006 at 8:21 am
Viewing 15 posts - 7,576 through 7,590 (of 7,602 total)