Viewing 14 posts - 16 through 29 (of 29 total)
John,
1. Yes you can create indexes on a table after data is inserted
2. It would actually be much better if you place indexes after you perform data insertion, as having...
November 29, 2006 at 1:09 pm
I am assuming that you are using either a Profiler or a server trace which is writing the data to the the database table called: "dbo.LOAD_TEST_V_28_11_06 "
In...
November 29, 2006 at 10:56 am
Hmm ... don't know much more about email sending, but it appears that the error message states the problem.
November 28, 2006 at 3:10 pm
Ah ... initially I assumed that by performing an INSERT within the TRIGGER we might enter some infinite loop where the INSERT would fire a TRIGGER, which would in turn...
November 28, 2006 at 1:46 pm
http://www.only4gurus.net/miscellaneous/sqlsrv_programming.pdf
Information below is coming from the link mentioned above:
The computer running SQL Server must be set up as an e-mail client. SQL Server Enterprise Manager is used to assign...
November 28, 2006 at 1:42 pm
There appears to be a problem with using a trigger in my case.
Namely, I believe we only have an AFTER TRIGGER and an INSTEAD OF TRIGGER.
If I use INSTEAD OF TRIGGER, then...
November 28, 2006 at 1:36 pm
Your syntax error (although not stated what it is exactly) is probably due to data type casting/conversion as described here:
http://www.extremeexperts.com/SQL/Articles/CASEinORDER.aspx
Will below work?
ORDER BY
CASE WHEN @orderId = 1 THEN...
November 28, 2006 at 12:05 pm
Guys,
If I create an INSERT trigger and then peform an INSERT of items (A,B), is it possible, inside the trigger, to see the items which are being inserted by the...
November 28, 2006 at 11:41 am
Thanks a lot guys.
Let me try both approaches.
November 28, 2006 at 9:05 am
I have a similar problem. That is, I have jobs running every day performing backups of all the user databases.
For all, except 1 database, no problems ever occurred. For one...
November 25, 2006 at 8:29 pm
I just learned that the easiest way of removing the stored procedure from the cache is to recompile it as such:
sp_recompile 'stored procedure name'
I think that this is the best way to go,...
November 21, 2006 at 3:48 pm
That is correct. In your situation there is never a need to question the results of the testing area.
I will consult with my co-workers here and see whether we can set...
November 21, 2006 at 8:35 am
You are correct. We do have both a testing and production areas. And I do perform tests in the testing area, where the use of DBCC FREEPROCCACHE command is less...
November 21, 2006 at 8:11 am
Viewing 14 posts - 16 through 29 (of 29 total)