Viewing 8 posts - 1 through 8 (of 8 total)
Great, this works fine!
Adi, thank you very much!
December 23, 2008 at 12:20 am
Wow! Exactly what I had in mind!
It's very nice looking. I will adopt this construction, for sure!
EvilPostIT you helped me great with this! Thanks a lot!
November 15, 2007 at 10:14 am
I would like to execute the result of the following SQL in a job:
select
'alter database ' + sd.name + ' modify file (name=N''' + sm.name+''', filegrowth = 100MB)'
from sys.master_files...
November 15, 2007 at 5:29 am
Yes, the globals give you page numbers, userid and so on but no server\instance name!
May 14, 2007 at 6:18 am
The idea is to execute it on linked servers to gather space usage information and store the collected info in one centralised table.... so it would be a nice solution...
July 21, 2006 at 6:12 am
Hi John,
Thank you for your reaction.
You're still using the insert into ---- exec construction. If I use this in my stored procedure, the procedure can be executed with succes. But...
July 21, 2006 at 5:48 am
Hi Ryan,
Example 1 - create the same table in multiple databases
For dbName in database1, database2, database3
do
use $dbName
go
create table test .......
done
Example 2 - delete records in multiple tables (the column update_date...
July 13, 2006 at 7:29 am
Hi Ryan,
Thanks for your quick reaction.
It will do the job, but it is not wat I was looking for.
I want to use a construction in which the user needs...
July 12, 2006 at 11:40 am
Viewing 8 posts - 1 through 8 (of 8 total)