Viewing 15 posts - 46 through 60 (of 155 total)
I'm no TSQL expert, so someone could probably write a much better script than I could, but you want to look into joining these two tables:
[msdb].[dbo].[sysjobhistory]
[msdb].[dbo].[sysjobs]
June 4, 2008 at 10:12 am
From the original post, it wasn't clear that you were referring to upgrading a database itself. So in essence, I suppose during the logshipping restore process you are essentially...
June 4, 2008 at 9:53 am
I believe you need to combine the 'use '+@dbname with the rest of your @sql variable and execute it all at once with only one exec(@sql) statement.
As it...
June 4, 2008 at 9:29 am
Log Shipping copies logs to a different server for DR purposes. It has nothing to do with updating SQL Server binaries.
June 4, 2008 at 8:54 am
Since Express does not come with the Agent, you need to use a work around with Task Scheduler, if you want this to be automated.
Please see here:
http://code.msdn.microsoft.com/SQLExamples/Wiki/View.aspx?title=ExpressBackups&referringTitle=Home
June 4, 2008 at 8:43 am
Cross Post...
Please see this post instead:
http://www.sqlservercentral.com/Forums/Topic511237-357-1.aspx
June 4, 2008 at 8:32 am
If your end-goal is to essentially have a copy of the Prod DB as a TestDB, you should use backup/restore instead of copy or bulk insert.
June 4, 2008 at 8:13 am
Did this database already exist on SQL 2005 before you tried attaching it in 2000?
Actually, just as a first question, is this database "Adventure Works", or a "real" database?
June 4, 2008 at 6:46 am
A good first step would be to run the 2005 upgrade advisor and review the output report from that.
June 3, 2008 at 8:54 am
This made me curious, so I checked it out. I have a feeling this feature might be bugged.
- I checked the flag, hit ok, and closed. Checkbox was...
June 3, 2008 at 8:51 am
From reading that link, it sounds like you have it right - they would have to be a sysadmin in order to reset a password via the GUI (article mentions...
June 3, 2008 at 8:33 am
To the best of my knowledge, you can not administer SQL 7.0 databases from Management Studio. You can manage SQL 2000, but not 7.0.
June 3, 2008 at 7:53 am
My understanding is that Express only comes with 32-bit reporting services.
It looks like some tweaking would need to be done (not sure if this applies here):
http://technet.microsoft.com/en-us/library/ms143293.aspx
You might also look here...
June 3, 2008 at 7:38 am
You can't create a group per se, but you could create a role and assign individual sql logins to be members of that role, coming "close" to the desired effect...
June 3, 2008 at 7:25 am
Viewing 15 posts - 46 through 60 (of 155 total)