Forum Replies Created

Viewing 15 posts - 496 through 510 (of 1,065 total)

  • RE: Back up Strategy

    And make sure your backups are on different PHYSICAL media to the database.

    I've lost count of the number of organisations I've seen that partition a large raid array into different...

  • RE: Can I make an existing column as IDENTITY column ?

    kevriley (8/19/2009)


    Ian Scarlett (8/19/2009)


    Just to add to kevriley's solution... if you use this method, don't forget to re-add any constraints and triggers you may have had on the original employee...

  • RE: Can I make an existing column as IDENTITY column ?

    Just to add to kevriley's solution... if you use this method, don't forget to re-add any constraints and triggers you may have had on the original employee table.

  • RE: positioned update problem

    That message means you are trying to update a view that joins to at least one other table.

    I assume in your code that "tab1" is actually a view.

    What are you...

  • RE: Function Problem

    Functions are used to return data and cannot (should not... some undocumented workarounds have been suggested) be used to do anything that changes the database state i.e. your UPDATE statement.

    You...

  • RE: Query runs slow on machine with Core2 CPU than single processor machine.

    Unless I've missed something, then apart from slight differences in the estimates, those plans look the same.

    If that's the case, then you should be looking at the differences in...

  • RE: Are the posted questions getting worse?

    GilaMonster (8/15/2009)


    Lynn Pettis (8/15/2009)


    You'd think someone with the alphabet soup following his name would know better.

    Yes, you would.... Especially the one that reads 'MCT'

    I've corrected him elsewhere also today. I'm...

  • RE: Shrink Table

    And .... I have LOB_DATA with 14Million+ Ghost_record_count.

    I'm a bit confused here. You have posted this in the SQL 7,2000 forum.......

    If memory serves me correctly, there wasn't an XML datatype...

  • RE: Business Rule Database Design Question

    copied it right out of his post, ran it, and got no error - what am I missing here?

    David is right, it works SOMETIMES. In this case it depends...

  • RE: Publisher need to have same specs with subscriber?

    What does this indicate? a disk io bottleneck?

    Possibly... if that's the only entry you've seen then it may be nothing to worry about. If you're seeing a lot of these,...

  • RE: SQL Server and named instances

    This is just personal preference, but I hate having databases for 3rd party applications (even Microsoft ones) on the same instance as our own databases.

    The ability to upgrade to a...

  • RE: Odd "Cannot find a table or object" error

    Another subtle difference between SQL 2000 and SQL2005. Try this:-

    CREATE TABLE #EID ( ID INT, Ename VARCHAR(10) )

    INSERT INTO #EID ( ID, Ename )

    SELECT 1, 'hello'

    SELECT * FROM #EID...

  • RE: Table Relationships

    Having just re-read my original post, I don't think I explained the Primary Key bit very well, and I don't want to send you off in the wrong direction because...

  • RE: Table Relationships

    Dot a definitive answer, but a few things to think about which may sway your decision one way or the other.

    One of the basic rules of designing your database is...

  • RE: error "Could not open a connection to SQL Server"

    If you run osql without the -S parameter, it will try to connect to the default instance.

    If yours is a named instance (i.e. machinename\instancename), you will need to specify this...

Viewing 15 posts - 496 through 510 (of 1,065 total)