Viewing 15 posts - 6,616 through 6,630 (of 7,472 total)
You could also use sysprocesses for a quick ref.
This is a system-table, NOT to be modified/updated by anyone but the system !!
But you...
April 28, 2005 at 12:14 am
I guess your reboot-policy comes from an NT-4 era
We only reboot if fixes are planned and installed or if our production-plant has a...
April 27, 2005 at 1:10 am
I've used PSTAT.exe from the Wk2 resource kit to capture the data,
then transfered the intercepted output to a central place
, imported them into SQL and ran a filterquery to...
April 25, 2005 at 7:27 am
print screen on a stone plate ??
I've got 50+ servers to monitor.
April 22, 2005 at 5:15 am
Thé big thing with any RDBMS (sqlserver/oracle/db2/...) is to work set-oriented. Once you get that in the fingers, things will work smoothly.
Maybe...
April 22, 2005 at 12:12 am
Let's hope your worktables are no #- or ##tables
These are only available within their own connection.
April 21, 2005 at 12:42 am
- Avoid using a cursor !!
Is this what you aim for ?
Declare @MyError int, @MyRowcount int
Update S
SET NAME = REPLICATE( CHAR(65 +...
April 21, 2005 at 12:32 am
- How many times is your trigger fired ?
(I've seen systems that perform an insert and then do a couple of updates to the same row to complete data....
April 19, 2005 at 1:50 am
win2k3 ? MSDTC enabled for remote usage ?
April 14, 2005 at 1:19 am
you'll have to look for negative length parameter used in a substring function.
I've encountered this some times when using "dynamic" substrings based on CHARINDEX.
e.g. select substring(mycol, April 14, 2005 at 12:41 am
there can be tons of reasons why it gets stuck
- how is your linked server defined
- problems with the network ?
- is the...
April 14, 2005 at 12:32 am
Rowversion is a sysnonym for timestamp datatype.
This timestamp-column is (automaticaly) altered every time the row is updated.
What can it do ? Just indicate if the row has been changed since...
April 14, 2005 at 12:24 am
maybe http://www.sqldts.com has the answer.
April 13, 2005 at 11:36 am
Is this job origination from another server ? (check the "target server(s)" pane when you edit the job)
You could try to alter the job so it only runs local, or...
April 13, 2005 at 11:34 am
If you have sqk2k, script the dts-package as visual basic and then search for the DTSStep_DTSExecuteSQLTask_3.
This way you may find your way using the gui to repair/intervene the issue....
April 13, 2005 at 6:27 am
Viewing 15 posts - 6,616 through 6,630 (of 7,472 total)