Forum Replies Created

Viewing 15 posts - 256 through 270 (of 492 total)

  • RE: what is the difference between RPC:Completed and SP:Completed in sqlprofiler

    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.

  • RE: clustering

    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.

  • RE: Error in log only while rebooting server("Login failed for user xxx for DB yyy")

    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.

  • RE: User does not have rights

    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.

  • RE: temp table (#) Vs Dynamic Table (@)

    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.

  • RE: temp table (#) Vs Dynamic Table (@)

    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.

  • RE: Reporting Services Logs not being deleted

    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.

  • RE: AWE & Lock pages

    sandhyarao49 (4/28/2010)


    When Lock pages in momory in enabled for the account which runs under sql server, then this info should be logged in the server logs--

    To my Knowledge and...

    Leo
    Nothing in life is ever so complicated that with a little work it can't be made more complicated.

  • RE: ALLOW_PAGE_LOCKS : to use or not to use

    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.

  • RE: ALLOW_PAGE_LOCKS : to use or not to use

    GP-395290 (3/20/2008)


    Maybe if you could let me know when SQL Server would think it's optimally better to lock a page rather than a row that might help me understand. I...

    Leo
    Nothing in life is ever so complicated that with a little work it can't be made more complicated.

  • RE: Moving tempdb to new luns on mount points

    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.

  • RE: SSIS On a SQL Cluster

    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.

  • RE: Moving TempDB of the Cluster Resource

    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.

  • RE: Clustering question -- Active/Active

    Henry Treftz (2/11/2011)


    Can I set up an active, active cluster such that if there is a failover to a single server one instance of SQL Server gets significantly more resources...

    Leo
    Nothing in life is ever so complicated that with a little work it can't be made more complicated.

  • RE: tempDB.mdf grows unexpectedly

    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.

Viewing 15 posts - 256 through 270 (of 492 total)