Forum Replies Created

Viewing 8 posts - 1 through 8 (of 8 total)

  • RE: ServiceBroker: Access to another db

    So you are right - the agent is the correct task to do this. In SQL Express I do not have an agent - but the service broker is available....

  • RE: stopping index generation

    Why do you want to not update an index during a batch?

    because of duration... I thought this is a big brake...

    thank you all for your replies!!!!

  • RE: stopping index generation

    I want to disable updating index for one batch, the index should be online for other batches.

    Example:

    <BEGIN TRANSACTION>

    <do not update index>

    <CURSOR>

    <UPDATE TABLE>

    <RENEW INDEX>

    <COMMIT TRANSACTION>

  • RE: stopping index generation

    I'm sorry about my short description.

    Example: There is an table tmp.Stats (GUID,Name,...,dtCreated) with an INDEX IX_tmp_Stats_dtCreated.

    When I know do multiple inserts I assume that the index will be updated...

  • RE: DTC Transaction - Internal abort

    ...doesn't work...

    I try to explain again:

    I want to source some statistics-tables out from one sql server to another sql server. I wrote same triggers to do this. Simultaneous I...

  • RE: DTC Transaction - Internal abort

    Here is my own solution:

    You can define the execution context for the trigger using WITH EXECUTE AS:

    ALTER TRIGGER <triggername> ON <tablename> WITH EXECUTE AS OWNER AFTER INSERT, UPDATE...

    If you do...

  • RE: DTC Transaction - Internal abort

    just want to specify my question:

    I have two servers in different domains. I want to create on machine A a linkedserver reference to machine B. On both machines "sql server...

  • RE: sp_who AND Name of Stored Procedure

    Hey Lowell,

    thank your for your reply. It seems to work. Indeed it shows me "CREATE STORED PROCEDURE" when I'm running the Procedure via EXEC, but it's ok to identify the...

Viewing 8 posts - 1 through 8 (of 8 total)