Viewing 12 posts - 16 through 27 (of 27 total)
Thank you for your analysis. I found the information in Inside SQL Server 2000 yesterday but your analysis added to my knowledge.
I am going to make a couple or recommendation...
October 27, 2004 at 7:54 am
The stupid face was not intended. Disk::Sector:age should have been Disk-Sector-Page where the - is a double colon. The ColonP is interpreted as a stupid...
October 26, 2004 at 2:01 pm
Yes. Make a SQL Server Job. enter the procedure into a Job Step and schedule the job to run every day at whatever time you choose.
August 26, 2004 at 9:29 am
Thanks!
After reading this it is obvious that a BIT datatype actually uses 2 bits, one for the data and one for the Null Column BitMap. Someone who is using bits...
August 25, 2004 at 8:57 am
Thanks.
Makes sence.
What I'm working on is creating my own bit map in a tiny, small, int... column. I do this with bit-wise operations. Once the bits are set I can...
August 23, 2004 at 1:34 pm
Try using the osql or isql command with the -o (that's a lower case o.) This allows you to execute SQL and place the output in the file specified by the...
August 23, 2004 at 1:16 pm
This code will cycle through all databases on a specific server and return all Databses, FileGroups and FileNames with the space used. It's just an exercise to show you how...
June 15, 2004 at 8:13 am
Sometimes it's more important to get the job done that to find the snazziest way to do it. Brute force works... most of the time... and in a lot of...
June 8, 2004 at 12:50 pm
Try this.
1) Union the two tables together (If they have exactly the same formats... see NOTE: below)
SELECT * INTO ##Compare FROM Task UNION SELECT * FROM Tracker..Task
2) See if there...
June 8, 2004 at 9:49 am
Just a quick note. You said, "to create a sort of data dictionary."
There's not question about it, the system tables ARE the data dictionary. There may be views and tools...
June 8, 2004 at 9:27 am
Here's a quick blurb about Particitioned Views. It's one way to span a table, actually multiple tables each containing part of the whole logical table, across filegroups.
Lookup the following in...
June 8, 2004 at 9:13 am
Displays fragmentation information for the data and indexes of the specified table.
DBCC SHOWCONTIG
[ ( { table_name | table_id | view_name | view_id }
[ , index_name | index_id...
June 7, 2004 at 2:09 pm
Viewing 12 posts - 16 through 27 (of 27 total)