Viewing 15 posts - 3,676 through 3,690 (of 7,496 total)
One ambiguity overhere:
- are you talking of white spaces in the column names ?
- are you talking of white spaces in the columns content ?
To alter the column names, you...
June 8, 2009 at 1:11 am
There is a reason for the dependency of sqlserver instances vs drives !
Why are you tempted to avoid this dependency ?
June 8, 2009 at 1:07 am
One of the most important advantages of filegroups comes from a DRP context.
Partial availability: (EntEdtn / DevEdtn)
The only thing of a db you need is the primary filegroup ...
June 6, 2009 at 1:04 pm
If you created your new non-clustering index without specifying a filegroup, you should see a parallel execution for that query, because will actually put this index on a per content...
June 5, 2009 at 3:18 am
Your issue ( select max(the_clustered_pk_column) ) is the cause of your huge consumption.
It actually performs the full clustered index datapage level scan !!!!
This is an issue of SQLServer in the...
June 5, 2009 at 12:32 am
Lowell (6/3/2009)
ALZDBA (6/3/2009)
Attached you'll find a version I use for quick and dirty CPR-trace 😉
ALZDBA the version you posted has all the CrLf stripped out, making it difficult to test,...
June 4, 2009 at 12:28 am
Attached you'll find a version I use for quick and dirty CPR-trace 😉
June 3, 2009 at 5:33 am
I didn't kill the sqlserver service !
I dropped the event service (sqlserver object).
DROP SERVICE S_Logon_Events_Service
There was a huge backlog because I defined to few quereaders.
June 1, 2009 at 11:59 pm
I played a bit with SSB .... monitoring is the big issue.
I use SSB to track some sqlserver events. (logins, failed logins)
I must state that in a single case of...
June 1, 2009 at 9:55 am
- Why do you think you need the cross join ??
- What's the relationship of that x-joined table to the other tables ?
June 1, 2009 at 9:49 am
did you read these good blog posts ?
By Jimmy May:
May 29, 2009 at 11:58 am
just make sure they don't encrypt everything.
That would be total overkill !!
Every column that gets encrypted will be converted (implicit) to varbinary(max) !!
These columns cannot be indexed,....
Also mention, you...
May 27, 2009 at 2:16 pm
veritas_86 (5/26/2009)
May 26, 2009 at 12:57 pm
at MS
- the general page: http://www.microsoft.com/sqlserver/2008/en/us/default.aspx
- "Upgrading to SQL Server 2008" msdn.microsoft.com/en-us/library/bb677622.aspx
Helps you with preparing and planning your migration
- "Microsoft SQL Server...
May 26, 2009 at 12:35 am
actually, you don't need another sql instance.
You might as well just create a new userdb (tools) and export your data from master to your userdb.
After that, it may be best...
May 24, 2009 at 7:51 am
Viewing 15 posts - 3,676 through 3,690 (of 7,496 total)