Viewing 9 posts - 1 through 9 (of 9 total)
Another issue to consider in the bit vs tiny int debate is that tinyint fields can be indexed, bits cannot.
Including a tinyint in an index can give more of a...
February 14, 2005 at 3:48 am
Don't kid yourself.... moral victory, you still FAILED.
October 14, 2004 at 6:37 am
As stated above the correct answer is syntax error for the reasons already stated
October 14, 2004 at 2:57 am
DONT do it !! It's bad database design and will produce a vfery slow database.
It's far more efficient to store the binary file in a subdirectory and store the path\filename...
June 24, 2004 at 7:55 am
AT ALL COSTS !!!! do not use TEXT !!!
1. It is extremely slow for large databases.
2. The text is stored seperately and referenced by a pointerle.
3. It prevents point...
June 24, 2004 at 7:52 am
picking up on the previous comment. using comparisons like <> can cause table scans even when a suitable index is available.
If table is a big table, I'd also look...
May 5, 2004 at 3:48 am
picking up on the previous comment. using comparisons like <> can cause table scans even when a suitable index is available.
If table is a big table, I'd also look...
May 5, 2004 at 3:48 am
1. You need to change your join types. Microsoft recomend that you use the explicit JOIN command, in fact Microsoft declare that the join syntax you are using returns inconsistant...
May 5, 2004 at 2:12 am
To add to this... DBCC ShrinkDB does not recover space no longer used by text and image data if they are stored in the same filegroup as the data.
The only...
May 15, 2003 at 2:22 am
Viewing 9 posts - 1 through 9 (of 9 total)