Viewing 15 posts - 1,066 through 1,080 (of 1,248 total)
Probably, I did not make it clear. The jobs I would like to handle are on the Windows level.
December 14, 2006 at 10:12 am
Nija: you confused me.
Could you explain how dbcc inputbuffer affects modification of a parent table, and fire triggers?
Many thanks
December 13, 2006 at 3:28 pm
How about something like:
SELECT MAX(startdate), MemberNbr FROM MemberNbr GROUP BY MemberNbr HAVING A <> 0
December 11, 2006 at 11:25 am
You do not have any criterion in search. You do not need your data displayed in order. So, you may not need any index in your table.
December 11, 2006 at 11:13 am
Personally, I think it is not logically feasible to audit activities on parent levels from a child level.
December 11, 2006 at 11:10 am
How about
SELECT MAX(startdate), MemberNbr FROM MemberNbr GROUP BY MemberNbr
December 11, 2006 at 11:06 am
Could you tell me where I could go to the SQLDebugger security?
December 11, 2006 at 8:38 am
As what you wrote, @@ERROR only returns the error number of the last transaction. If you would like to be sure you had better include a piece of code something...
December 8, 2006 at 8:39 am
Could you have differential backup?
December 8, 2006 at 8:10 am
Remember, it is okay to restore a user database with old service pack to a server with a later service pack. You may have an error if you do it...
December 8, 2006 at 8:06 am
You may drop index before bulk-inserting data, then rebuild the index. FillFactor may also be changed to other value, depending on the percentage of import data next time.
It is...
December 7, 2006 at 8:31 am
Run sp_lock to see which objects are locked. You got to be very careful when manipulating large tables. I mean check your queries carefully before executing them.
December 7, 2006 at 8:23 am
Could you use
SELECT * FROM TableA CROSS JOIN TableB
December 7, 2006 at 8:19 am
Viewing 15 posts - 1,066 through 1,080 (of 1,248 total)