Viewing 15 posts - 16 through 30 (of 48 total)
you can use execute sql script task and there you write one script of select * into...
October 5, 2012 at 3:26 am
also gets the category name and filters out the report server jobs.
SELECT sysjobs.name 'Job Name',
syscategories.name 'Category',
...
October 5, 2012 at 3:24 am
SELECT job.job_id,notify_level_email
,name,enabled,description
,step_name,command,server,database_name
FROM msdb.dbo.sysjobs job JOIN
msdb.dbo.sysjobsteps steps ...
October 5, 2012 at 3:23 am
Thanks Lowel,
how to insert the currentdate into AA table with new policy number
September 7, 2012 at 6:17 am
i want code for all databases backups out in single lines of script it is for full,diff
May 16, 2012 at 6:57 am
all logins and password are saved in master database.
you need to script out of users from master database and excuete in your target server
and fix the logins /Users
April 19, 2012 at 4:32 am
you can learn from http://www.sqlservercentral.com/articles/XML/87685/
March 27, 2012 at 6:52 am
good queries
March 27, 2012 at 6:51 am
In the Creation table we can create a trigger on table.then easily we will know
March 27, 2012 at 6:48 am
By Using these scripts we can know the large space tables on the database.
Thanks SQLDBA Arjun for providing this
February 29, 2012 at 3:09 am
Ninja's_RGR'us (9/15/2011)
This is worth noting to all who may have wanted to help (from his cross-post).Div Goud (9/15/2011)
hi ningive solution to the respective que otherwise shutdown to your mouth
September 15, 2011 at 9:12 am
the average should be under 15ms with maximums up to 25ms. If your numbers are below these values then your I/O is in good standing and no additional disk bottleneck...
September 15, 2011 at 8:38 am
--Cursor to check with all other records
While @@fetch_status=0
Begin
Set @cnt = @cnt-1
August 24, 2011 at 9:14 am
Viewing 15 posts - 16 through 30 (of 48 total)