Forum Replies Created

Viewing 15 posts - 26,941 through 26,955 (of 39,793 total)

  • RE: Temp db Issue in SQL 2000 server

    filegrowth takes effect when the database runs out of space, not when the server is started.

  • RE: Another Backup scenario

    What exactly do you have?

    Full backup on: __/__/2008?

    Log Backup?

    When was the table deleted?

    What has been done since the table was deleted.

  • RE: DMV question

    I don't think there's one to do this per table.

    You could use SQLTrace to do this. What's the intention? See a level of activity per table?

  • RE: Index Vs Select criteria sequence

    You should not index ALL the fields. That will slow down your updates/inserts/deletes.

    You want to include indexes on those fields which are mostly used for queries. If you have two...

  • RE: Move database to a new server

    Backup / restore is dirt simple and there is no downtime. I'm not sure why that would not be optimum.

    The copy db wizard is flaky, and I do not recommend...

  • RE: Transferring millions of rows of table data across Sql server 2005

    Another vote for BCP. Works wonderfully for me.

  • RE: Transactional push replication w/o snapshot

    AFAIK, the data in the publication HAS to be the same to start replication. You need to either do that with a snapshot, db backup/restore, or manually ensuring the data...

  • RE: Installation Of SQL Server 2005 On a Virtual Server

    It's half a day if they have time. I've worked with clients and they schedule out work, so they don't necessarily have time to dedicate right away. They might have...

  • RE: Moving system database's log file on a cluster

    It should work fine the way you are doing it. I think you might need to stop both nodes to get this to work and prevent failover.

  • RE: Counting Lines in data file

    Can you note what worked? Did the line count work?

    You could just import the file into one large table, single column, and then count the rows.

  • RE: The Agile Cult

    Glad you liked the article and was curious how things have worked for people out there. From an ex-rugby player, the idea of doing something in a Scrum appeals to...

  • RE: Performance Implications of Database Snapshots

    I think that snapshots are really only useful in two places. This is theoretical and from research in talking to people.

    - Quick restore after upgrades/patches. Take one before making changes,...

  • RE: OSQL in 2008

    If you run osql from the command line, does it run? might not be in the path.

  • RE: Select scores using join

    What's the issue? Do those queries not work? Or do you need them in one query?

    Use and AND in the WHERE clause and include both criteria.

  • RE: Log Space

    Run the log backups on your interval and note the sizes. This will help you figure out how big to size the log. The more often you backup the log...

Viewing 15 posts - 26,941 through 26,955 (of 39,793 total)