Viewing 15 posts - 256 through 270 (of 492 total)
The RPC protocol is used when a client calls a procedure on a server. In SQL terms typically when an application server makes a procedure call against the database you...
Leo
Nothing in life is ever so complicated that with a little work it can't be made more complicated.
March 1, 2011 at 3:21 pm
Here's a great set of articles I found very helpfull.
http://www.mssqltips.com/tip.asp?tip=1687
http://www.mssqltips.com/tip.asp?tip=1698
http://www.mssqltips.com/tip.asp?tip=1709
http://www.mssqltips.com/tip.asp?tip=1721
There are a few gotchas around virtual SQL Server names if you have multiple named instances. If you intend runing Reporting...
Leo
Nothing in life is ever so complicated that with a little work it can't be made more complicated.
February 28, 2011 at 2:22 pm
Once the SQL Server Service has started, it is technically able to accept connections, but it takes a few seconds to attache the databases and make them available. This means...
Leo
Nothing in life is ever so complicated that with a little work it can't be made more complicated.
February 28, 2011 at 2:02 pm
You rproblem is in this section of the code
sudhakara (2/27/2011)CROSS APPLY sys.dm_exec_sql_text(sql_handle)
To use the dm_exec_sql_text function you need VIEW SERVER STATE permissions. See http://msdn.microsoft.com/en-us/library/ms181929.aspx?ppud=4
You can fix it by making the...
Leo
Nothing in life is ever so complicated that with a little work it can't be made more complicated.
February 27, 2011 at 2:35 pm
TheSQLGuru (2/25/2011)
For a small number of rows you won't see any signifiacnt performance diference,
That is absolutely not true in all cases.
You're correct, my statment isn't true in all...
Leo
Nothing in life is ever so complicated that with a little work it can't be made more complicated.
February 27, 2011 at 1:22 pm
For a small number of rows you won't see any signifiacnt performance diference, but as the rowcount goes up you will find temp (#) tables perform better than table variables...
Leo
Nothing in life is ever so complicated that with a little work it can't be made more complicated.
February 24, 2011 at 1:11 pm
I've followed up on this and it looks like this is a bug in SQL 2008 R1 and R2.
I'd be interested to know if anyone has checked their 2008 SSRS...
Leo
Nothing in life is ever so complicated that with a little work it can't be made more complicated.
February 21, 2011 at 3:01 pm
sandhyarao49 (4/28/2010)
To my Knowledge and...
Leo
Nothing in life is ever so complicated that with a little work it can't be made more complicated.
February 20, 2011 at 1:31 pm
GP-395290 (3/18/2008)
Hello,Quick question about ALLOW_PAGE_LOCKS. Should I set this to ON for all indexes in a heavy transaction based system?
To extend my earlier post, the default setting is ON. I...
Leo
Nothing in life is ever so complicated that with a little work it can't be made more complicated.
February 16, 2011 at 6:42 pm
GP-395290 (3/20/2008)
Leo
Nothing in life is ever so complicated that with a little work it can't be made more complicated.
February 16, 2011 at 6:33 pm
Sounds like a round about way to do this. You could just create a small test database on the new drives. If it works SQL can see it and you...
Leo
Nothing in life is ever so complicated that with a little work it can't be made more complicated.
February 16, 2011 at 2:50 pm
Thanks all for the replies. None of the documentation is really that explicit. I've worked out that you can set this up and for each SQL Instance on the cluster...
Leo
Nothing in life is ever so complicated that with a little work it can't be made more complicated.
February 15, 2011 at 6:29 pm
David Benoit (2/14/2011)
One question too; how are they determining that tempdb needs to be put on local drives? Why not properly configure a SAN presentation to support the activity?
They had...
Leo
Nothing in life is ever so complicated that with a little work it can't be made more complicated.
February 14, 2011 at 1:35 pm
Henry Treftz (2/11/2011)
Leo
Nothing in life is ever so complicated that with a little work it can't be made more complicated.
February 13, 2011 at 2:35 pm
On of the event recorded in the default trace is the Data File auto grow event (trace_event_id = 92). So without all the complex sluthing you can look here and...
Leo
Nothing in life is ever so complicated that with a little work it can't be made more complicated.
January 27, 2011 at 3:43 pm
Viewing 15 posts - 256 through 270 (of 492 total)