Forum Replies Created

Viewing 15 posts - 42,661 through 42,675 (of 49,566 total)

  • RE: log shipping without regular bak files

    Full backup does not truncate the tran log. Never has. Only a transaction log backup, an explicit truncate or a switch to simple recovery will truncate the tran log.

  • RE: SQL 2005-64 bit

    Don't bother with lock pages on a desktop. Since it prevents SQL from been swapped out, it could give you perf problems with other apps.

    Lock pages is important on servers...

  • RE: Question On Queries with declared Variables

    That's going to have to be a procedure, since you have dynamic SQL.

  • RE: Date Validation using ISDATE()

    Remove the select ISDATE ('5/1/2008') from before the Create Proc

    You're missing begins for two of those ifs

    If ISDATE(@DateMin) = 0

    BEGIN

    Raiserror('Please enter valid date format...

  • RE: Production issue

    Monitor that regularly and when the available space gets low, manually grow the file.

  • RE: Integrity Check -- DBCC

    That's going to take a while.

    What's the availability requirements? Can you get a weekend where the DB isn't in use? It may not take that long, but just for...

  • RE: Recommended path for advanced training?

    Gaby Abed (12/2/2008)


    Really? I'm curious what his answer was, or was it a simple "I don't know"?

    He told us (panel interview, myself, two other DBAs and a...

  • RE: Unused Columns (all NULL) and Saving Storage Space

    nate (12/2/2008)


    Then, I moved on to a different table that had no clustered indexes. Once I removed 5 unused columns and rebuilt the non-clustered index, the 'Data Space' value...

  • RE: Integrity Check -- DBCC

    Script all the objects (perhaps excluding the foreign keys) to files, bcp all of the data to file. Create a new database, run all of the script files, bcp all...

  • RE: Production issue

    It's got nothing to do with space available. Grows are very intensive operations and will cause the entire system to slow down due to the IO impact.

    As for monitoring, try...

  • RE: Product of Values in a Column

    There's no built-in function that does that. However...

    Itzik, in his PASS precon, showed a cool trick for faking one using some highschool maths.

    LOGx(a * b * c) = LOGx(a) +...

  • RE: Integrity Check -- DBCC

    Paul Randal (12/2/2008)


    Without backups, this is going to be hard to get rid of - repair cannot fix this so your only options without backups are to migrate all schema...

  • RE: Recommended path for advanced training?

    Jeff Moden (12/2/2008)


    I had several folks say they were Ninja's in SQL Server and one even claimed to be a "9 out of 10" right on his resume......

  • RE: Recommended path for advanced training?

    Oksana March (12/2/2008)


    I have same question but how to go from beginner to intermediate! Oksana

    Study for the SQL certifications.

    Note, I did not say write and pass them. I said...

  • RE: Aggregate function SUM gives some junk value

    santhoshkumar.boregowda (12/2/2008)


    The SUM of above must be equal to zero.

    No way to ensure that with a float.

    Any Suggestion?

    Change the data type to one that is precise and accurate.

Viewing 15 posts - 42,661 through 42,675 (of 49,566 total)