Forum Replies Created

Viewing 15 posts - 44,176 through 44,190 (of 49,552 total)

  • RE: UPDATESTATS Job

    Please don't cross post. It just wastes people's time and fragments replies.

    No more replies to this thread please. Direct replies to:

    http://www.sqlservercentral.com/Forums/Topic577330-146-1.aspx

    Gail Shaw
    Microsoft Certified Master: SQL Server, MVP, M.Sc (Comp Sci)
    SQL In The Wild: Discussions on DB performance with occasional diversions into recoverability

    We walk in the dark places no others will enter
    We stand on the bridge and no one may pass
  • RE: Help on Update/Query

    Only the moderators can delete an entire thread. If you do create a new post on an existing issue, please post in the old thread and put the url of...

    Gail Shaw
    Microsoft Certified Master: SQL Server, MVP, M.Sc (Comp Sci)
    SQL In The Wild: Discussions on DB performance with occasional diversions into recoverability

    We walk in the dark places no others will enter
    We stand on the bridge and no one may pass
  • RE: SQL 2000 wont start on a W2k3 cluster server

    What does the SQL error log say?

    What's you cluster config (how many nodes, how many are active?)

    Gail Shaw
    Microsoft Certified Master: SQL Server, MVP, M.Sc (Comp Sci)
    SQL In The Wild: Discussions on DB performance with occasional diversions into recoverability

    We walk in the dark places no others will enter
    We stand on the bridge and no one may pass
  • RE: updatestats job

    Please run the following and post the output here

    DBCC CheckDB(<Database Name> ) WITH NO_INFOMSGS

    Do you have any backup that doesn't have corruptions in it?

    Gail Shaw
    Microsoft Certified Master: SQL Server, MVP, M.Sc (Comp Sci)
    SQL In The Wild: Discussions on DB performance with occasional diversions into recoverability

    We walk in the dark places no others will enter
    We stand on the bridge and no one may pass
  • RE: does log size has any impact on performane of database

    Have you considered partitioned tables? Depending on what you're inserting it may be possible for you to create a new table, insert into that and then switch that table with...

    Gail Shaw
    Microsoft Certified Master: SQL Server, MVP, M.Sc (Comp Sci)
    SQL In The Wild: Discussions on DB performance with occasional diversions into recoverability

    We walk in the dark places no others will enter
    We stand on the bridge and no one may pass
  • RE: SQL Server 2005 restore problem

    That means that the backup was striped across two backup files when it was created, and you only have one of those files. Most commonly this happens because when the...

    Gail Shaw
    Microsoft Certified Master: SQL Server, MVP, M.Sc (Comp Sci)
    SQL In The Wild: Discussions on DB performance with occasional diversions into recoverability

    We walk in the dark places no others will enter
    We stand on the bridge and no one may pass
  • RE: Help on update query

    The form of update that has a from clause is probably what you need.

    update table1

    set col2 = table2.col2

    from table1 inner join table2 on table1.col1 = table2.col1

    Gail Shaw
    Microsoft Certified Master: SQL Server, MVP, M.Sc (Comp Sci)
    SQL In The Wild: Discussions on DB performance with occasional diversions into recoverability

    We walk in the dark places no others will enter
    We stand on the bridge and no one may pass
  • RE: Size limitation of variable in query analyzer

    Stored procedures have no length limit. The max size of a variable on SQL 2000 is 8000 characters (varchar(8000).

    You can build the query into multiple variables and exec them...

    Gail Shaw
    Microsoft Certified Master: SQL Server, MVP, M.Sc (Comp Sci)
    SQL In The Wild: Discussions on DB performance with occasional diversions into recoverability

    We walk in the dark places no others will enter
    We stand on the bridge and no one may pass
  • RE: SQL Server Logs too

    You could try using a text editor (a good one). Notepad++, ultraedit, etc

    You can cycle the error log and SQL will start a new one, then you can read the...

    Gail Shaw
    Microsoft Certified Master: SQL Server, MVP, M.Sc (Comp Sci)
    SQL In The Wild: Discussions on DB performance with occasional diversions into recoverability

    We walk in the dark places no others will enter
    We stand on the bridge and no one may pass
  • RE: HELP!! SQL Server won't start

    Does the SQL service account have rights to that directory?

    Is anything else using that file (an antivirus, a text editor, etc)

    Gail Shaw
    Microsoft Certified Master: SQL Server, MVP, M.Sc (Comp Sci)
    SQL In The Wild: Discussions on DB performance with occasional diversions into recoverability

    We walk in the dark places no others will enter
    We stand on the bridge and no one may pass
  • RE: Query Tuning in TSQL

    Milu (9/27/2008)


    Gila,

    If i am not wrong, you can't creat an index in Table variable...rite explicitly...rite??

    then wht u will do now??/

    Only as part of a primary key. That's one of the...

    Gail Shaw
    Microsoft Certified Master: SQL Server, MVP, M.Sc (Comp Sci)
    SQL In The Wild: Discussions on DB performance with occasional diversions into recoverability

    We walk in the dark places no others will enter
    We stand on the bridge and no one may pass
  • RE: SQL studs and studettes!!!Please recommend something on this...Thx

    Can you please post table structure, index definitions, the execution plan (as a .sqlplan file, zipped and attached) and an estimate of the number of rows in the table and...

    Gail Shaw
    Microsoft Certified Master: SQL Server, MVP, M.Sc (Comp Sci)
    SQL In The Wild: Discussions on DB performance with occasional diversions into recoverability

    We walk in the dark places no others will enter
    We stand on the bridge and no one may pass
  • RE: I forget the sql server 2005 user Name and password

    Are you the administrator? If not, ask your admin to reset password.

    If you are the admin, is there a windows authentication login that exists with sysadmin permissions?

    Gail Shaw
    Microsoft Certified Master: SQL Server, MVP, M.Sc (Comp Sci)
    SQL In The Wild: Discussions on DB performance with occasional diversions into recoverability

    We walk in the dark places no others will enter
    We stand on the bridge and no one may pass
  • RE: Query Tuning in TSQL

    Milu (9/27/2008)


    rbarryyoung i am not clear what you are trying to say to me, its not automatically create one index in sql 2005? my qst is is it creating is...

    Gail Shaw
    Microsoft Certified Master: SQL Server, MVP, M.Sc (Comp Sci)
    SQL In The Wild: Discussions on DB performance with occasional diversions into recoverability

    We walk in the dark places no others will enter
    We stand on the bridge and no one may pass
  • RE: disk space

    Add more disks

    Delete unnecessary files.

    Gail Shaw
    Microsoft Certified Master: SQL Server, MVP, M.Sc (Comp Sci)
    SQL In The Wild: Discussions on DB performance with occasional diversions into recoverability

    We walk in the dark places no others will enter
    We stand on the bridge and no one may pass

Viewing 15 posts - 44,176 through 44,190 (of 49,552 total)