Forum Replies Created

Viewing 15 posts - 76 through 90 (of 169 total)

  • RE: Query tuning

    I would like to extend what Goce has pointed out as 3 rd point.

    First of all Split query in 2 part (Your select part and the From part for which you...

    Kindest Regards,

    Sameer Raval [Sql Server DBA]
    Geico Insurance
    RavalSameer@hotmail.com

  • RE: rollback on index job?

    It should not have any impact on the indexes that are already built. Every index will be built as transaction, to my understanding the last one which is in process...

    Kindest Regards,

    Sameer Raval [Sql Server DBA]
    Geico Insurance
    RavalSameer@hotmail.com

  • RE: same section of query gives same execution plan, but large performance difference, at different points

    John,

    Here is what you need to do

    enter and run the following Transact-SQL commands:

     SET STATISTICS TIME ON

     

    and  below that place your...

    Kindest Regards,

    Sameer Raval [Sql Server DBA]
    Geico Insurance
    RavalSameer@hotmail.com

  • RE: Reschedule a job

    In EM go to your Job

    Right Click- select-- Properties--Select Schedule and click delete button

    on the bottom.

    Then whenever next time you want to run manually execute that job.

       

     

    Kindest Regards,

    Sameer Raval [Sql Server DBA]
    Geico Insurance
    RavalSameer@hotmail.com

  • RE: SQL Server 2005 Transaction Log

    Dipen,

    After reading your post, what I would like to suggest you is this.

    In your case better stay with full recovery model. Reason for that is with every day full backup...

    Kindest Regards,

    Sameer Raval [Sql Server DBA]
    Geico Insurance
    RavalSameer@hotmail.com

  • RE: Index Usege Report

    I think probably you have statistics for same column and wizard makes safer suggestion  with interpretation that in absence of stat this index can be useful.

    Kindest Regards,

    Sameer Raval [Sql Server DBA]
    Geico Insurance
    RavalSameer@hotmail.com

  • RE: Joining 2 Tables and Eliminating the Redundant Data

    Jol,

    The logic here is you need to do something for

    server to identify row in unique way

    try left outer join with combination of 2 col.

    In your case Account# looks unique

    Something of this...

    Kindest Regards,

    Sameer Raval [Sql Server DBA]
    Geico Insurance
    RavalSameer@hotmail.com

  • RE: Joining 2 Tables and Eliminating the Redundant Data

    Jol,

    Please do not post same question at multiple places.

    Your question is answered in administration

    http://www.sqlservercentral.com/forums/shwmessage.aspx?forumid=5&messageid=271655#bm271701

    Kindest Regards,

    Sameer Raval [Sql Server DBA]
    Geico Insurance
    RavalSameer@hotmail.com

  • RE: Joining 2 Tables and Eliminating the Redundant Data

    The error is in your table a

    where you are using usr jo for both row.

    This is very bad practise for join.

    Join need unique identification of row.

    For your expected...

    Kindest Regards,

    Sameer Raval [Sql Server DBA]
    Geico Insurance
    RavalSameer@hotmail.com

  • RE: Significance of SP_Who/Sp_Who2 in this situation seems lost

    Thank you Antares, I agree with what you are suggesting.

    But say for example, I would like to add one more situation,

    say if application server is recently reboot by developer and...

    Kindest Regards,

    Sameer Raval [Sql Server DBA]
    Geico Insurance
    RavalSameer@hotmail.com

  • RE: Florida Sql Server Developer Sought

    Hi,

    Today I have provided my detail resume thru email at hr@visionamics.com

    Thanks,

     

    Kindest Regards,

    Sameer Raval [Sql Server DBA]
    Geico Insurance
    RavalSameer@hotmail.com

  • RE: (Urgent) Sql Server Agent Stopped Automatically after sometime

    Create a batch file called RestartAgent.BAT with the following commands in it, and save it on the C:\ drive:

    @ECHO OFF

    NET START SQLSERVERAGENT

    While running the above command, make...

    Kindest Regards,

    Sameer Raval [Sql Server DBA]
    Geico Insurance
    RavalSameer@hotmail.com

  • RE: High Memory Usage

    Execute following command in Query Analyzer

    SELECT sj.job_id,sj.name,step_id,step_name,

    CASE WHEN run_status = 1 THEN 'Success'

            ELSE 'Failed'

            END AS Status  ,

    CAST ( LEFT(CAST(run_date AS VARCHAR(8)),4) + '/' +       SUBSTRING(CAST(run_date AS VARCHAR(8)),...

    Kindest Regards,

    Sameer Raval [Sql Server DBA]
    Geico Insurance
    RavalSameer@hotmail.com

  • RE: High Memory Usage

    There cannot be simple one command solution for this.

    There are few places  you should look for at first 

    1. Check error log to figure out what was going on Db...

    Kindest Regards,

    Sameer Raval [Sql Server DBA]
    Geico Insurance
    RavalSameer@hotmail.com

  • RE: Attaching LDF n MDF file of sql 2005 in SQL 2000

    Satyam,

    There is no backward compatibility with sql 2005.

    You cannot Attach or Restore sql2005 db to sql2000.

    The only available option is SSIS to import/export data from

    2005 to 2000.

    Hope this helps,

     

     

     

     

    Kindest Regards,

    Sameer Raval [Sql Server DBA]
    Geico Insurance
    RavalSameer@hotmail.com

Viewing 15 posts - 76 through 90 (of 169 total)