Forum Replies Created

Viewing 15 posts - 106 through 120 (of 140 total)

  • RE: DBA's & Photography

    I was a professional photographer and now I'm a DBA. Went back to school in the 80's and changed professions.

    I, too, ride a bike, but mine is the kind you...

  • RE: Boycott?

    I don't think we'd skip a version. I just don't see how we can upgrade every 3 years with our current level of staffing. We would always wait several months...

  • RE: Boycott?

    There's no way that a shop such as ours with several dozen different dbs and apps and only 3 DBAs can perform upgrades every 3 years. We still have a...

  • RE: Query

    dob = date of birth

    date of birth does not have any relationship to join date unless the table is in the Almighty's db.

    😀

  • RE: Database Mails

    You can create a new Operator that consists of multiple email addresses seperated by semi-colons, and then use that for notifications.

    Or you can use:

    sp_send_dbmail

    ...

  • RE: SQL Defrag

    Thanks, Paul. You're right. My document must be old.

  • RE: SQL Defrag

    Paul Randal (1/28/2008)


    RML51 (1/10/2008)


    Please remember that INDEXDEFRAG will be deprecated. Try using DBREINDEX or ALTER INDEX REORGANIZE.

    DBREINDEX is also deprecated and doesn't run the indexdefrag algorithm - it does offline...

  • RE: Server Login/Role And DB User/Role Script

    Errors...

    Msg 156, Level 15, State 1, Line 36

    Incorrect syntax near the keyword 'FETCH'.

    Msg 156, Level 15, State 1, Line 43

    Incorrect syntax near the keyword 'DEALLOCATE'.

    Msg 156, Level 15, State 1,...

  • RE: SQL Defrag

    Please remember that INDEXDEFRAG will be deprecated. Try using DBREINDEX or ALTER INDEX REORGANIZE.

  • RE: Convert 2000 (32 bit) to 2005 (64 bit)

    We did this exact thing in September. I would advise you to rebuild your indexes and update your statistics after you move your dbs to the new SQL2005/64bit instance.

    Also, we...

  • RE: DTS job - loading data from CSV file

    You may be able to use something like the the following, too.

     

    BULK INSERT  NorthWind.dbo.[table_name]

       FROM 'C:\InputFile.csv'

        WITH (FieldTerminator = ',',

       FirstRow = 2)  -- Use if csv file has...

  • RE: Using XP_EXECRESULTSET To Obtain Database Size Information and More

    I have used NW to do some testing in our prod environments. For example, I wanted to test latency across replicated servers, so I first set up my scripts and jobs, and debugged it using NW....

  • RE: Using XP_EXECRESULTSET To Obtain Database Size Information and More

    We have pub and northwind. That's why I used "dbid>6".

  • RE: Using XP_EXECRESULTSET To Obtain Database Size Information and More

    You could try replacing the "sid>1" with "dbid>6". I think that works, too.

  • RE: Replace and space with new value

    Thanks to you all. This worked exactly as needed.

Viewing 15 posts - 106 through 120 (of 140 total)