Forum Replies Created

Viewing 15 posts - 3,961 through 3,975 (of 7,496 total)

  • RE: production server slower than development server

    What's the number of rows that match the criteria ?

    Is that number the same for both instances ?

    How about concurrency ?

    What software level are you on (@@version) ?

  • RE: production server slower than development server

    - Is there a clustering index on that table ?

    if not, provide one, unless you can prove it hurts performance.

    Data pages may be scattered all over...

  • RE: Perfmon

    the script also works on SP2.

    By now you should at least be on SP2 with CU2 and if you can directly go to SP3.

    MS did improve the product to your...

  • RE: Perfmon

    Oh yes ... SANs .... the big black magic box :hehe:

    - Performance monitoring a SAN is very vendor specific, so contact your vendor if you really think that is the...

  • RE: While loop not working - desperate!

    You pull over the data to be processed into a temptb, so you'll no longer lock out the actual table.

    - Why don't you use a regular cursor to loop your...

  • RE: Performance Problem

    - size

    - distribution

    - index organization

    - memory usage

    - paging activity

    - other processes on the server

    - locking

  • RE: production server slower than development server

    Get things organized !

    create table Testperf (col1 varchar(5000) )

    cannot be a reference because of ... table design.

    No indexes, a table with a single column, ...

    If you want to stress test...

  • RE: xp_cmdshell Limitation

    Mark Pratt (2/24/2009)


    The command in question looks like this -

    EXEC MASTER..xp_cmdshell 'BCP "EXEC GfmReplication.dbo.zz_ExportXml" queryout c:\Org.xml -S(local) -T -c'

    The problem is that my script, being part of a unit...

  • RE: New views do not come across in backup

    If there is no ETL in between your prod to DR instance, check if your backup actually completed successfully.

    Also check your backup set contains only one backup instance, otherwise you...

  • RE: xp_cmdshell Limitation

    you would be better off using a separate step in the job and use sqlcmd to export the data or use TSQL backup to create a full db backup.

    - does...

  • RE: Automation Solution for Deadlock

    - you need to revise your application !

    - you can elevate sqlservers sensitivity to deadlock detection and intervention using sp_configure "blocked process threshold "

    - activate trace 1222 to get an...

  • RE: New views do not come across in backup

    imo that view must have been created / altered after your backup started or ended.

    Some of us create a full backup and make additional log backup(s) afterward to be restored...

  • RE: Solution to dump the Activity Monitor Results to database Table

    - which activity monitor are you refering to ? (profiler/perfmon/..)

    - are you trying to sample connections or do you want an actual sqlserver usage report (queries etc.)

    In that...

  • RE: SQL Server 2005 SP3

    do you want an overhaul or a new car ?

  • RE: KB960090

    automated deployment ... as in unattended deployment ... on a cluster ?

    Lovely to see this behaviour :sick:

    Another reason we still perform the upgrades with (requested) planned downtime and under strickt...

Viewing 15 posts - 3,961 through 3,975 (of 7,496 total)