Forum Replies Created

Viewing 15 posts - 40,381 through 40,395 (of 49,571 total)

  • RE: What is wrong with this statement

    Dugi (3/13/2009)


    CASE ClientID

    WHEN CHARINDEX('-',ClientID) <> 0 THEN

    (CASE WHEN ISNUMERIC(SUBSTRING(ClientID,CHARINDEX('-',ClientID) + 1, 5)) = 1

    THEN...

  • RE: Database Shrink

    kwilthew (3/13/2009)


    "Backing up the files of a SQL database while it's active is not a good way to back the database up."

    If you're referring to the tape backups, those are...

  • RE: RESTORE DATABASE is terminating abnormally

    On the SQL 2000 database, please run the following and post the full output

    DBCC CHECKDB (< Database Name > ) WITH NO_INFOMSGS, ALL_ERRORMSGS

    DBCC CHECKCATALOG (< Database Name > ) WITH...

  • RE: What is wrong with this statement

    CASE has two syntaxes

    CASE < column or variable > WHEN < value > THEN ...

    or

    CASE WHEN < Boolean expression > THEN ....

    They are not mixable. Change it to

    CASE WHEN CHARINDEX('-',ClientID)...

  • RE: Database Shrink

    kwilthew (3/13/2009)


    My question is, if there is so much free space available within the database, is this not a good candidate for shrinking the database file to make it more...

  • RE: Indexes Won't Defrag

    Stamey (3/13/2009)


    I understand, but it just seems like it would be so simple, with small indexes, to just rewrite the index in the correct order so that there would be...

  • RE: Please clarify

    prvreddy (3/12/2009)


    Yesterday, I attended one interview for DBA.I got following questions.But i didn't answers these questions.

    I assume a junior DBA position.

    1)if log file fills 100% then how...

  • RE: SQL 2005 Missing Indexes

    Tody (3/13/2009)


    if i set indexes on the sql table

    should i add per index only 1 column

    or is there to set an index with multpli columns?

    Not sure I understand you.

    Indexes should...

  • RE: Are the posted questions getting worse?

    Alvin Ramard (3/12/2009)


    I've never heard anyone refer to SQL 2005 as SQL 9 before and it makes me wonder how much he really knows.

    I haven't. The only versions that I've...

  • RE: Just had an interview for a DBA in CT

    Ellis (3/12/2009)


    when you restore from a file or filegroup but you don't retore the full database backup don't you need to apply transactions logs too...to make the database consistent?

    Indeed...

  • RE: Just had an interview for a DBA in CT

    frankivey (3/12/2009)


    You even qouted yourself that you can restore a database from a filegroup.

    No I did not. I said (and I quote)

    It (a full database backup) allows you...

  • RE: Are the posted questions getting worse?

    Bruce W Cassidy (3/12/2009)


    [font="Verdana"]Congratulations Kimberly (or was it Kalen?) 😛 [/font]

    http://sqlinthewild.co.za/index.php/2009/01/22/bad-advice/#comment-2997

    Jack Corbett (3/12/2009)


    Yeah, congrats. I'm looking forward to (hope I haven't missed) the Simple-Talk article on Profiler...

  • RE: Just had an interview for a DBA in CT

    frankivey (3/12/2009)


    The dumbass immediately told me this interview was over!!!! I was like you have to be kidding me?

    I have worked as a DBA for the past 6 years...

  • RE: Just had an interview for a DBA in CT

    frankivey (3/12/2009)


    sorry guy but you are wrong, you back ndf file extension with a full backup.

    Or a filegroup backup of the filegroup that contains that ndf or a file backup...

  • RE: Just had an interview for a DBA in CT

    frankivey (3/12/2009)


    Yes it is, I explained in detail that both backups include the system tables and objects, sorry I did not go into detail here but yes, I did explain...

Viewing 15 posts - 40,381 through 40,395 (of 49,571 total)