Forum Replies Created

Viewing 15 posts - 32,236 through 32,250 (of 39,818 total)

  • RE: WHERE Clause vs. JOIN Clause

    Kevin has a great analysis. Go with that.

  • RE: Error Handling

    Raiserror can log them. Look at the options in BOL.

  • RE: IIS Issues with SQL 2K?

    I wouldn't expect issues either. If you're serving pages on the web, it's a bad practice to have SQL on the same box as IIS for security reasons, but not...

  • RE: TempDB Full (9002)

    Allocate more space to the log file. I'd run it up to 2GB or so. It doesn't hurt you to reserve the space and preventing growths during busy transactions is...

  • RE: TLOG file: best percentage size of DATAFILE

    The SQL_Oracle is right. There is no answer.

    The default works well, but it depends. The log grows because of changes in your data. If you have mostly static data, like...

  • RE: MCTS 70-431 Down but not out!

    I passed last week and this was definitely a hard exam. Broad coverage of lots of topics, so be sure you know the product pretty well. Also the simulation sections...

  • RE: Archiving

    I think it's probably irrelevant, but you definitely need to keep track of it. I have had to pull old data for legal reasons, though drop it in it's own...

  • RE: My Projects Have Never Failed

    Failure of a project is definitely something I think you can measure and a few people have given some nice criteria.

    However personal success or failure is something different and something...

  • RE: Select the most recent date for each item

    select a.item, a.date

    from MyTable a

    where a.date = ( select max(b.date)

    ...

  • RE: Backup of schema by query

    If you just need schema, then I'd just script out the database. All tables, views, procs, users, security, etc. Basically check everything in the script box.

  • RE: SQL Query Analyzer: Debugger doesn''''t work

    It's been awhile, but I think this has something to do with security. Either your user or the SQL Server user do not have administrative rights needed for debugging.

  • RE: Index seeks

    Everything in the index plan should add up to 100%, so there will always be things with large percentages. Seeks are better than scans because you're traversing the index directly...

  • RE: 70-443 is not a good exam.

    I thought there was plenty of time, but I am a fast reader.

    This exam is a "case study" exam. Each "part" is a case study, maybe a page to a...

  • RE: Backup of schema by query

    Take a backup and zip it.

  • RE: SQL Server 2000 install on Windows XP

    Lots of differences and really two many to list. SS2K5 is a whole new animal and an upgrade should bring along your jobs.

Viewing 15 posts - 32,236 through 32,250 (of 39,818 total)