Viewing 15 posts - 1,336 through 1,350 (of 2,635 total)
Try this:
On the Tools menu, click Options.
On the Environment/General page, select Hide system objects in Object Explorer, and then click OK.
In the SQL Server Management Studio dialog box, click OK...
October 16, 2007 at 12:02 pm
Since I reread your original post found that you want to export to text files, I have to say that there's only one way modify a package to export multiple...
October 16, 2007 at 10:55 am
You'd have to write a query to do that. Something like:
select 'INSERT INTO tablename values (', columnname1, ',' ,
columnname2 ')'
from tablename
Greg
October 16, 2007 at 10:20 am
The advice I'd offer depends on how you're creating the packages. Are you creating the packages with the Import/Export wizard or are you starting from scratch with the DTS...
October 15, 2007 at 4:08 pm
Frank,
As John said yesterday, you must restore a full backup before restoring a differential backup. See "How to: Restore a Full Differential Backup (Transact-SQL) " in BooksOnLine for an...
October 12, 2007 at 9:06 am
I don't spend a lot of time playing games. Like Luke L, I spend so much time in front of a monitor during the week that I don't have...
October 12, 2007 at 8:56 am
Job execution info is automatically stored in the sysjobhistory table in msdb. Does that meet your needs?
Greg
October 11, 2007 at 12:52 pm
That's a good point. You should see if another job is starting the disabled job.
Greg
October 11, 2007 at 12:20 pm
Doh!! And it's sp_addsrvrolemember to add a login to a fixed server role.
Greg
October 11, 2007 at 12:18 pm
If the job still runs after disabling the schedule, try stopping and restarting the SQL Server Agent service.
Greg
October 11, 2007 at 11:05 am
Franco,
If you're writing the differential backups to a single file so the file contains a week's worth of backups, just have the differential that occurs next after the weekly full...
October 11, 2007 at 9:59 am
Adding role membership is a separate operation from creating a login. Use sp_srvrolemember to make a login a member of a server role and sp_adduser to add a user...
October 10, 2007 at 5:26 pm
Have you tried scripting out the stored procedures in SQL 2000 and running the scripts to create them in SQL 2005? It's a few more steps than transferring with...
October 10, 2007 at 2:25 pm
Syed,
After reading your other thread in this forum, I think I understand what want to do. Do you want to put the RESTORE commands (which are T-SQL) in a...
October 10, 2007 at 1:07 pm
Do this before the restore:
ALTER DATABASE yourdb SET SINGLE_USER WITH ROLLBACK IMMEDIATE
Do this after the restore:
ALTER DATABASE yourdb SET MULTI_USER
Greg
October 10, 2007 at 11:46 am
Viewing 15 posts - 1,336 through 1,350 (of 2,635 total)