Viewing 15 posts - 106 through 120 (of 287 total)
For what it's worth, you're welcome to use appropriate variations on the code below for your database backups. The backup file names contain timestamps:
EXECUTE master.dbo.xp_create_subdir N'Z:\Database Backups\Differential Backups\model'
DECLARE @DateString VARCHAR(16);
SET...
October 24, 2012 at 1:32 pm
Gail, thanks again for your responses.
In my 12 years of working with SQL Server, both as a software engineer and as a DBA, I have never before or since had...
October 21, 2012 at 2:13 pm
L' Eomot Inversé and Gail,
Thank you both for your detailed responses. They've been very educational.
________
L' Eomot Inversé,
In answer to your question:
"Did you try using a FORCESEEK table hint specifying...
October 21, 2012 at 11:33 am
L' Eomot Inversé, Gail,
I understand what you're saying but please follow me on this.
Maybe there are only a few records with one of the values in them so there...
October 20, 2012 at 8:39 pm
Gail,
If the original poster creates an index on just the column with the 4 values, will this not force the Optimizer to use that index?
"SELECT <column names> FROM <table name>...
October 20, 2012 at 2:23 pm
sunny.tjk,
Why don't you try both solution ideas:
1. One large, low cardinality index
2. Four filtered indexes
and let us know which performs the best.
I'd like to know.
October 20, 2012 at 11:13 am
This post is not in disagreement with any prior posts, just offering a perspective based upon my own experiences.
The choice between the Full and Simple database recovery models usually comes...
October 20, 2012 at 11:02 am
This information may be dated, but I remember reading somewhere that every connection to an instance of SQL Server requires 32K of RAM.
1,000,000 connections x 32,000 Bytes = 32,000,000,000 Bytes...
October 19, 2012 at 1:38 pm
sunny.tjk (10/18/2012)
October 19, 2012 at 12:05 pm
Wow! Awesome script. Thanks for sharing it.
October 18, 2012 at 4:41 pm
I have seen a cache plan bloat problem like this before.
It was caused by hundreds of stored procedures implemented with passed in arguments converted to local variables, the developer's theory...
October 17, 2012 at 6:10 pm
I have had some odd things happen related to the creation and execution of maintenance plans. In general, I try to avoid creating and using them unless they perform file...
October 16, 2012 at 10:40 am
GilaMonster (10/10/2012)
October 12, 2012 at 12:14 pm
I'm no expert on this subject but I'm wondering if SQL Server has simply delivered an inappropriate error message.
Regarding the 2 extra columns you mentioned on the subscriber side: Are...
October 12, 2012 at 11:58 am
YarHad (10/9/2012)
...I am rebuilding/reorganizing indexes and I am trying to locate the activity via server logs...
If you're reorganizing or rebuilding your indexes in a SQL Agent Job, you can examine...
October 12, 2012 at 11:45 am
Viewing 15 posts - 106 through 120 (of 287 total)