Viewing 15 posts - 316 through 330 (of 2,636 total)
What is in the job category and what makes you think it wasn't built in SQL Server?
June 23, 2009 at 8:28 am
Did you try running it? It will return all the jobs that are scheduled to run on 06/23/2009. Change the date to the 25th and run it...
June 23, 2009 at 8:20 am
select j.name, s.next_run_date, s.next_run_time
from dbo.sysjobschedules s join dbo.sysjobs j
on s.job_id = j.job_id
where s.next_run_date = 20090623
June 22, 2009 at 4:40 pm
As far as I know, you can't do it. You could create multiple diagrams with different groups of tables in each. That could make it easier to find...
June 22, 2009 at 12:46 pm
mike-g (6/17/2009)
June 17, 2009 at 3:18 pm
There are system tables in msdb that you can query (sysjobhistory, sysjobs) and stored procedures (sp_help_jobhistory), but it's far easier to use the SQL Server Management Studio GUI to look...
June 17, 2009 at 3:10 pm
Does the user disappear from the database or just the permissions? My guesses would be another admin revoking the permissions or the database being restored to a point in...
June 17, 2009 at 10:44 am
Yes. It's very similar to running DTS in SQL 2005.
June 17, 2009 at 10:36 am
The recommended way is to query the catalog view sys.database_principals because sysusers may go away in future releases. I get the same results querying the view or sysusers.
June 16, 2009 at 3:03 pm
I recommend figuring out your backup and recovery stategy before creating the backups themselves. See BOL http://msdn.microsoft.com/en-us/library/ms191239(SQL.90).aspx
June 16, 2009 at 11:00 am
The beauty of configurations is you can use them to update connection managers for different environments at run time so it's easy to move packages from dev to test to...
June 16, 2009 at 10:08 am
Jobs and schedules can be enabled or disabled independently, so you can disable the job as Pradeep suggested and leave the schedule untouched. After July 1, just enable the...
June 16, 2009 at 9:53 am
Yes, you can edit DTS package in SSMS when you have the DTS designer components installed. Right-click on the package in Management-Legacy-Data Transformation Sevices and select "Open...".
June 16, 2009 at 9:48 am
Configuration files are included in Integration Services and are saved as xml code. They store package variable values, connection strings, configuration info for log providers, etc. BOL has...
June 16, 2009 at 9:03 am
We've chosen to store packages as files because we can use configuration files and because the packages seem to be easier to move from instance to instance. We also put...
June 15, 2009 at 5:16 pm
Viewing 15 posts - 316 through 330 (of 2,636 total)