Forum Replies Created

Viewing 15 posts - 47,011 through 47,025 (of 49,571 total)

  • RE: Tempdb filling up time after time

    Are you using Snapshot isolation level?

    Are you doing online index rebuilds?

  • RE: Database Mirroring - keeping logins/jobs etc. up to date

    julia.nicholas (4/4/2008)


    Of course, duh! I didn't think of that. So basically as long as when changes are made on the Principal server in terms of adding new jobs and...

  • RE: How to get HIT RATIO

    Could you explain more what you want please?

    What are you trying to see?

  • RE: Encrypt views

    Just bear in mind that the 'encryption' of views/stored procs is not unbreakable.

    Took me under 5 min last time.

  • RE: Checkpoint

    Which statement?

    Applying tran logs in a log shipping scenario? Disaster recovery?

  • RE: Database Mirroring - keeping logins/jobs etc. up to date

    julia.nicholas (4/3/2008)


    AndyD (4/2/2008)


    For Logins, my advice is to stick with Windows Authentication only. That way, all logins are via domain users/groups - no logins need to be transferred.

    True, but you...

  • RE: Checkpoint

    1) It's old syntax (I think it's deprecated) with the same behaviour as Simple recovery mode.

    2) Lazy writer writes dirty pages to disk based on memory pressure. Checkpoint runs from...

  • RE: make a copy of a sqlserver 2005 database on same server

    Take a backup and restore it as a new DB.

  • RE: Long running queries

    I assume you want to speed them up. Correct?

    Is there blocking?

    Is the query written optimally?

    Are the indexes useful (ie, is the query using indexes).

    Run the query with the execution...

  • RE: Performance

    See if there's blocking which is causieng the query to run slower than usual

    Have a look at the query itself, see if it can be optimised.

    Run it with exec plan,...

  • RE: Tempdb filling up time after time

    What's the initial size for TempDB and what size is it reaching?

  • RE: Strange procedure cache issue

    32 bit or 64 bit?

    Run this, and see what the cache sizes are.

    SELECT name, SUM(single_pages_kb + multi_pages_kb)/1024 AS SizeInKB

    FROM sys.dm_os_memory_clerks

    GROUP BY name

    In...

  • RE: GETDATE

    What is it doing and what should it be doing?

    Some schema definitions, sample data and expected output would be useful.

  • RE: Just a basic trigger - PLEASE help..

    What are you struggling with?

    Does this do what you want?

    CREATE TRIGGER trgCopyNewUsers

    ON Users -- Table the trigger's on

    FOR INSERT -- What operation it triggers on

    AS

    Insert into Table2 (UID)

    SELECT UID

    FROM...

  • RE: Tie Up DTS Package and Stored Procedures

    You can use DTSRUNUI to get the command line of the DTS package.

    It's a gui app that lets you select the server and package, set the options and parameters...

Viewing 15 posts - 47,011 through 47,025 (of 49,571 total)