Forum Replies Created

Viewing 15 posts - 256 through 270 (of 1,065 total)

  • RE: Mirror or Log ship from 32bit to 64bit

    Yes, it's supported... the database format is unchanged regardless of the flavour/edition of SQL Server 2008.

  • RE: Reclaiming unused space in a table

    Do the tables contain a blob column?

    If so, you may be a victim of a known SQL Server 200 bug.

    Have a look at my response to this post earlier this...

  • RE: Distribution database is too big;

    Is it the distribution database itself, or the transaction log that is growing?

    If it's the transaction log, check the recovery model. If it's anything other than simple, you need to...

  • RE: How can I get list of deleted records in Trigger ?

    The list of deleted rows is in the "deleted" table.

    Your code

    declare @ID as INT;

    Select @ID = ID

    FROM Deleted

    DELETE FROM TableA

    WHERE ID = @ID

    is just retrieving one...

  • RE: identifying how long EXACTLY initialization takes?

    Each replication process is carried out by a SQL Agent job.

    You should be able to find your snapshot job (it will have a ctegory "REPL-Snapshot), and then it's just a...

  • RE: Replication Monitor

    I don't have access to a 2005 system with replication (only 2000 at the moment) to check that this is still valid for 2005.

    Have a look in TempDb, and if...

  • RE: Table insert performance ... please help!

    Size shouldn't really matter here (even it does with a lot of other things :-D).

    Is the stored procedure just inserting a single row, or many rows?

    Are you sure the insert...

  • RE: Table insert performance ... please help!

    Is it just the actual INSERT statement that is slow, or is it the overall execution of the stored procedure you are using that is slow?

    If it's the INSERT statement,...

  • RE: Replication Monitor

    Hold on, I've just re-read your original post, and I think there may be a bit of confusion between publications and subscriptions.

    i try using sp_dropmergesubscription and sql answer me "The...

  • RE: Trigger preventing inserts from happening on table?

    romanoplescia (11/20/2009)


    P.S What do you mean by this:

    The biggest problem I can see with the trigger is that it's referring to the "users" table, not the "inserted" table, so...

  • RE: Replication Monitor

    If my memory serves me correctly, the details displayed by Replication Monitor are from tables it creates in Tempdb.

    Deleted publications don't always seem to be removed from these tables, so...

  • RE: Trigger preventing inserts from happening on table?

    How do you know it's stopping inserts from happening?

    It's an AFTER trigger, so unless you do a ROLLBACK or a DELETE (which I can't see), the original insert should be...

  • RE: Performance issues related to Index

    The other column is simply a computed column which is simply adding a character value in front of the primary key data type so that every table can have a...

  • RE: Strange Merge Agent Parameter

    Mystery solved.

    Someone was asked to start the agent immediately, rather than via the schedule, and instead of clicking "Start Synchronizing", clicked "Run Agent at Subscriber". This makes a change to...

  • RE: RESTORE/RECOVERY taking hell lot of time

    Unless you actually need the database restored with STANDBY, leave it as NO RECOVERY.

    That should cut the restore time a bit, as SQL Server doesn't have to roll back...

Viewing 15 posts - 256 through 270 (of 1,065 total)