Viewing 7 posts - 1 through 7 (of 7 total)
Unfortunately it's not a stored procedure, but a parameterized query.
June 14, 2007 at 5:55 am
I always use ROBOCOPY for this kind of thing. It was included in the resource kits for win nt and win 2000, I am not sure if it comes with...
June 14, 2007 at 4:38 am
As far as I remember, you can change the properties of the arrow that you drag from one action to another, so that it will only do the second part...
June 14, 2007 at 4:09 am
I did a little research myself.
To get the currently running processes, use:
SELECT
session_id,status,
command,sql_handle,database_id
,(
May 15, 2007 at 8:14 am
I did a little research myself, as I was looking for something like it as well.
To get the currently running processes, use:
SELECT
session_id,status,
May 15, 2007 at 7:58 am
update table1
set [server owner] = table2.[server owner]
from table2
where table1.[server name] = table2.[server name]
(or something like that)
May 14, 2007 at 8:27 am
In sql 2000, I used
SELECT @sql = text
FROM ::fn_get_sql(@Handle)
where @Handle is the sql_handle from sysprocesses.
That seems to still work on 2005.
May 14, 2007 at 8:24 am
Viewing 7 posts - 1 through 7 (of 7 total)