Forum Replies Created

Viewing 15 posts - 121 through 135 (of 171 total)

  • RE: Shrinking SQL 2000 Database

    muthukkumaran Kaliyamoorthy (6/23/2011)


    tt-615680 (6/23/2011)


    Hi All,

    I have an SQL 2000 Database which is 135GB and I want to perform "Shrink Database" but I want to know what is the maximum percentage...

  • RE: Unscheduled Query taking up CPU

    SELECT GetDate() as Run_Date,

    rtrim(Cast(@@ServerName as varchar(100))) as Server,

    spid,

    blocked,

    waittime,

    sb.name,

    lastwaittype,

    ...

  • RE: Unscheduled Query taking up CPU

    Thank you for the reply.

    The user that is suppose to have run the particular query is not running anything at the time.

    Thank you

  • RE: SQLDMO_1

    Thank you for your reply. I have been using SQL Profiler to see if the program is running but it's not there. It is an SQL Agent job that seems...

  • RE: Setting max degree of parallelism to 1 to suppress query parallelism

    Thank you so much for all your advice

  • RE: Transactional log files

    GilaMonster (2/26/2011)


    tt-615680 (2/26/2011)


    1. The size in which the Transaction Log file is set

    Query sys.database_files

    2. When to truncate the log files in order to free up space, therefore the the server...

  • RE: delivery changed date query

    LutzM (2/21/2011)


    Please provide the sample data your result is based on in a ready to use format.

    Your expected result and the "sample data" provided so far don't seem to match....

  • RE: delivery changed date query

    I am only getting the data from one table which is:

    orderid (int)

    customer (varchar)

    Deliverydate (varchar)

    ChangedDate (datetime)

    I am only getting the data from one table which is:

    orderid customer Deliverydate ChangedDate

    12345 Bob...

  • RE: Performance Advice

    mohammed moinudheen (2/15/2011)


    What about the other maintenance jobs?

    Are they running fine?

    Rebuild/reorg ?

    All the other jobs seem to be fine for now. The indexes are dropped on a daily and...

  • RE: Using DATEADD to determine Del Dates

    vishal#SQL (2/10/2011)


    Hi,

    Do you want the count of deliveries where deliverydate within one week, two weeks and three weeks?

    Thank you for the reply. Yes I...

  • RE: Setting max degree of parallelism to 1 to suppress query parallelism

    s_osborne2 (1/18/2011)


    You can always set the degree of parallelism to 1 if you are having problems with particular queries. We use it sometimes.

    Example:

    SELECT

    *

    FROM

    ...

  • RE: Setting max degree of parallelism to 1 to suppress query parallelism

    ALZDBA (1/18/2011)


    setting it to 1 will prevent query parallelism for your instance.

    If that is your goal, that's the way to do it.

    Is that your goal ?

    On most of our oltp...

  • RE: Email Notification job step failed

    s_osborne2 (10/11/2010)


    Does it now always fail at this step or is it just sometimes?

    We've seen a problem recently with xp_smtp_sendmail being unable to run on SQL Server 2008 64 bit...

  • RE: How to: Check which query causing the most cpu usage?

    Grant Fritchey (10/5/2010)


    tt-615680 (10/5/2010)


    Grant Fritchey (10/5/2010)


    Which, do the same as the default trace or capture RPC:Complete & SQL:BatchComplete events?

    Yes, I know there are many queries or sysyem sp's that cannot...

  • RE: How to: Check which query causing the most cpu usage?

    Grant Fritchey (10/5/2010)


    tt-615680 (10/5/2010)


    GilaMonster (9/29/2010)


    arr.nagaraj (9/29/2010)


    Default trace contains the recently ran queries along with a few useful information

    like CPU, starttime etc. .. Probably can help your root cause analysis

    The default...

Viewing 15 posts - 121 through 135 (of 171 total)