Viewing 8 posts - 1 through 8 (of 8 total)
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....
December 9, 2010 at 12:15 am
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!!!!
August 16, 2010 at 5:14 am
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>
August 16, 2010 at 3:35 am
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...
August 16, 2010 at 3:16 am
...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...
June 21, 2010 at 3:39 am
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...
June 18, 2010 at 1:56 am
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...
June 17, 2010 at 7:53 am
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...
March 25, 2010 at 2:12 am
Viewing 8 posts - 1 through 8 (of 8 total)