Forum Replies Created

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

  • 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...

  • 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...

  • 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...

  • 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...

  • 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...

  • 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...

  • 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...

  • 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...

  • 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...

  • 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...

  • 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...

  • 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...

  • RE: SQL Agent Jobs - Go To Step specified

    Yes it can be done, but it's risky and this is not really the place to do loops like this. I would advise you build this sort of process into...

  • RE: SA Passwords

    After changing the password, write it down and put it in a safe or save it in an electronic password safe. Then don't use it except for emmergencies. In 17...

  • RE: Logshipping failure

    It would be good if you posted the error message when the restore fails. Also look in the logs and see what happened 3 weeks ago when it started failing.

    In...

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