Viewing 15 posts - 76 through 90 (of 197 total)
Vets5 (11/6/2012)
I'm putting together a script to run some audit checks(various different things).
I'm just wondering if there is any TSQL to return the Total RAM on a server to SSMS?
I...
November 6, 2012 at 8:36 am
nidhis (11/6/2012)
Hi, Can you help me understand how I can check the scalability of an SQL query.- Nidhi
What exactly do you mean by "check the scalability of an SQL query"?...
November 6, 2012 at 7:01 am
While there are likely many ways to do that, one technique that has worked for me is to use a variable, a connection manager and an expression that assigns the...
November 5, 2012 at 4:49 pm
Cory Blythe (11/5/2012)
They want me...
November 5, 2012 at 3:58 pm
I have always understood duration in Profiler to include the amount of time it takes SQL Server to fill the last buffer sent to the client. For very large result...
November 5, 2012 at 2:42 pm
Which is the best way to perform with tables to do DML ?
As with so many things in SQL Server, the answer is "it depends". But as a general...
November 5, 2012 at 9:28 am
Another good resource regarding a couple of misconceptions about the Bulk-Logged recovery model:
November 5, 2012 at 8:46 am
If anyone can say definitively if it is the start date for the restore, or when the restore completed, that would be great to know.
http://msdn.microsoft.com/en-us/library/ms187408(v=sql.105).aspx
restore_date datetime ...
November 2, 2012 at 4:23 pm
My first guess would be the plan cache.
Here is a query I believe originated from Kalen Delaney.
SELECT objtype, count(*) AS 'number of plans',
...
November 2, 2012 at 4:14 pm
abishekshroff (11/2/2012)
November 2, 2012 at 3:45 pm
penu.v8 (11/2/2012)
I am working on a database whose database size is 40 gb and the index size is 1 tb.
so i ran a query to find the unused index...
November 2, 2012 at 3:08 pm
Primary key that is... Not clustered index. Time for coffee on the West Coast.
November 2, 2012 at 8:47 am
Agreed. At first look, it appears to be a difficult question and if you attemp to run the scripts without the data, 4 out of the 6 statements work. But...
November 2, 2012 at 8:46 am
Without seeing the package it's a little hard to say, but it looks as if something in the package is attempting to set a variable named "User::intETLPID" to a value...
November 1, 2012 at 3:30 pm
capnhector (11/1/2012)
Michael Valentine Jones (11/1/2012)
It is probably best if you avoid triggers completely until you have a lot of experience with SQL Server.
if designed properly and tested thoroughly there is...
November 1, 2012 at 3:20 pm
Viewing 15 posts - 76 through 90 (of 197 total)