Forum Replies Created

Viewing 15 posts - 4,096 through 4,110 (of 7,502 total)

  • RE: Hidden RBAR: Triangular Joins

    So, what do you do without standards ?

    Some won't do business with you if you're not certified ISO...

    Which one to pick is up to the company.

    IMO things like SOx or...

  • RE: buffer cache hit ratio firing with no reason

    how long are they up and running after SP3 ?

    Keep in mind SP3 stops and starts sqlserver a number of times, so buffer cache will be cleared !

    (our clustered instances...

  • RE: SQL Server 2005 SP3

    - your sqlagent has not been started (cluster manager)

    (do you use SQLAgent ?)

    - you can enable these procs this way:

    -- enable Agent XPs

    EXEC sp_configure 'Agent XPs','1'

    RECONFIGURE

    GO

    This way you can...

  • RE: Want to become expert in clutering

    cluttering is another branche 😉

    Steve showed you some good refs for SQLServer clustering.

    Another good ref is the SQL Server 2005 Failover Clustering White Paper http://www.microsoft.com/downloads/details.aspx?familyid=818234dc-a17b-4f09-b282-c6830fead499&displaylang=en

    It always pays of to have...

  • RE: buffer cache hit ratio firing with no reason

    Mad-Dog (1/25/2009)


    right after installing sp3 and reboot the server,this alert start to come up.

    has anyone that have sp3 install and setup this alert in the SQL alert doesn't suffer from...

  • RE: Temp Tables vs. Physical Tables

    Jeff Moden (1/25/2009)


    Thanks for the links, Johan... I'll take a look (am I spelling your name correctly?)

    Yep, Johan is correct.:w00t:

  • RE: SQL Server 2005 SP3

    I first installed it on a couple of non clustered instances.

    I don't perform unattended installs .... must be my age 😉

    Basic scenario on our cluster:

    - move over all instances to...

  • RE: Temp Tables vs. Physical Tables

    Jeff Moden (1/24/2009)


    ... if they fit, that's as far as they go. If they don't, then they spill into the physical disk.

    "If" is the unknown over here,...

  • RE: SQL Server 2005 SP3

    It was a x64 cluster (2 nodes / 5 instances) all updated in a single run (because of the approved downtime). The actual upgrade took about a bit less than...

  • RE: Determine user's last login

    since you're at it ... this is what I experienced with logon triggers : http://www.sqlservercentral.com/articles/Administration/64974/

    With regards to the login info:

    Select name

    , create_date

    ...

  • RE: Temp Tables vs. Physical Tables

    also keep in mind temp tables (@ / # / ## ) are hosted in tempdb. tempdb is used at (sqlserver) instance level, for more than only storing temp tables....

  • RE: SQL Server 2005 SP3

    I didn't encounter any issues applying SP3. (x86 / x64)

    The 5 servers were we were on SP2 CU10 I have also upgraded to SP3 + CU1 without an issue.

  • RE: Hidden RBAR: Triangular Joins

    TheSQLGuru (1/22/2009)


    Joe Celko (1/22/2009)


    Did you know that CURRENT_TIMESTAMP has worked in SQL Server for several release now? The only excuse for talking like a hillbilly is "job security programming"...

  • RE: SQL Server trace id's problem

    Norm (1/22/2009)


    ....

    question: Would xp_cmdshell still have to be enabled if I run it as a operating system (cmdexec) type in my sql server job?

    No, you can disable xp_cmdshell, SQLAgent has...

  • RE: SQL Server trace id's problem

    - Did your stop trace work ?

    - Since you are using "EXEC xp_cmdshell 'd:\mssql\scripts\audit\rename_ddltrace.bat', NO_OUTPUT"

    Why don't you just provide the rename statement itself ?

    Dim @Doscmd nvarchar(max)

    Set @Doscmd = 'ren D:\MSSQL\reports\audit\audit_ddl.trc...

Viewing 15 posts - 4,096 through 4,110 (of 7,502 total)