Viewing 15 posts - 271 through 285 (of 317 total)
It is best to size you files so that autogrowth does not occur and manually extend your files in response to data growth.
As you said this gets you away from...
January 24, 2013 at 10:36 am
The results you are getting have to do with rounding rules.
They may be related to accounting rounding rules.
January 18, 2013 at 1:02 pm
The money data type is not an MS construct.
It came over with the original Sybase SQL Server code.
January 18, 2013 at 12:56 pm
You could also put the tables in their own schema and grant the user select on the schema.
January 18, 2013 at 12:52 pm
You should use CDC on the versions that have it.
On the older versions you could subscribe (pull) to their publications, modify the replication MS
insert and update procs in the...
January 18, 2013 at 9:32 am
Sorry, I have IP constraints.
January 17, 2013 at 4:25 pm
What I have done is create a powershell script that goes to all of my instances,
scans the log from a given timestamp and sends me email reports for errors...
January 17, 2013 at 4:01 pm
Best practice of shrinking the transaction log is to shrink it all the way down to smallest size possible (close to 0) and then alter the log to grow it...
January 16, 2013 at 9:57 am
If you are going to shrink the data file(s), you should leave enough space to rebuild the clustered indexes of your largest table.
After shrink you must rebuild all clustered indexes.
January 16, 2013 at 9:48 am
If the table is a HEAP only DELETE WITH (TABLOCK) or truncate are guaranteed to release space.
Best way to delete from a large table is to traverse the clustered...
January 16, 2013 at 9:46 am
And remember to include host, IP, process id, login, and SQL text of BOTH the blocker and the blocked.
make sure you store the wait time in ms so you can...
January 16, 2013 at 9:40 am
Another valid use case is of course as input parameter to a stored proc.
Again, if i have a substantial amount of data in the table variable input parameter,
I immediately move...
January 15, 2013 at 2:25 pm
Be careful in using @ type temporary tables.
The optimizer has no statistics on @ tables and assumes it has ONE row.
Even if you put a primary key on it, the...
January 15, 2013 at 9:53 am
Full database backups represent the database at the time the backup finished.
January 15, 2013 at 9:41 am
Viewing 15 posts - 271 through 285 (of 317 total)