Forum Replies Created

Viewing 15 posts - 43,801 through 43,815 (of 49,571 total)

  • RE: How can I trigger a SQL2005 Stored Procedure from SQL 2000?

    How have you set the linked server up? What errors is it giving?

  • RE: Index design

    GSquared (10/14/2008)


    A good way to do it is pick the columns that appear in Where/Join the most, and index those, and put the one with the highest selectivity at the...

  • RE: Distribution database

    I don't suppose you have a backup of distrbution?

    Did you drop the database, or did you delete the files of distribution? If you query sys.databases, is distribution listed?

  • RE: Primary File Group Is Full

    Is the drive full? Is there a max size set for the file?

  • RE: Index design

    Well, that depends on whether you want your indexes to be selective or do you want them to be useful and used.

    The clustered index benefits from unique values and an...

  • RE: How do I grant 'view definition' on a proc in SQL Server 2000?

    If your dev's getting an error, post the full error message here and we can help diagnose the cause.

  • RE: index question

    A rebuild won't hurt. Whether or not it's necessary depends on where the rows you're deleting are in that index. If scattered all over the place, then a rebuild's not...

  • RE: Predict output

    The question is do you want the theoretical result (where NULL, 1 and 1, NULL are both right) or the actual result that the current versions of SQL give for...

  • RE: Trigger - accessing updated and deleted

    You don't need a where clause anywhere. If only 1 row is affected by the update, then inserted and deleted will have only 1 row in.

    If there's a chance that...

  • RE: Large log file when using replication

    Ok, that is odd.

    What does this return?

    DBCC SQLPERF(logspace)

  • RE: sqlserver 2005 Express

    As I said before, I've said what I think you should do. If you disagree, then I'm out of suggestions as I don't know what else you could do.

  • RE: Triggers Examples

    tochaturvedi (10/14/2008)


    Hi Gail,

    Thanks for the reply.

    I know that the above trigger will fire after insert action to the sometable and insert the records to someothertable.

    Just the one column.

    You used the...

  • RE: SQL Server System Table to find Error log

    virgo (10/14/2008)


    Hi

    can any one please let me know if there is any system table where i can find sql server error log details

    other than general text error log file and...

  • RE: Triggers Examples

    tochaturvedi (10/14/2008)


    The trigger should insert records into tables.

    I need only general examples.

    CREATE TRIGGER trg_SomeInsert ON SOMETABLE

    AFTER INSERT

    AS

    Insert into someothertable

    Select somecolumn from inserted

    GO

    Does that help at all?

  • RE: Large log file when using replication

    A snapshot doesn't just move the updated rows, it will copy the entire database to the subscriber every day.

    Still, since it's not transactional it shouldn't have a big (if any)...

Viewing 15 posts - 43,801 through 43,815 (of 49,571 total)