Viewing 15 posts - 181 through 195 (of 1,160 total)
When an existing instance is upgraded, the instance name will remain the same. If it was a named instance before upgrade, it will continue to use the same after upgrade...
December 28, 2010 at 9:22 am
You can make use of the Default Trace to get that information. Here is a good example.
December 28, 2010 at 6:52 am
If you have SSMS 2005 or above installed somewhere on the network, please connect to the SQL Server 2000 instance using that. You can easily script out the jobs by...
December 28, 2010 at 5:54 am
You can make use of SMO.
http://msdn.microsoft.com/en-us/library/microsoft.sqlserver.management.smo.agent.job.aspx
http://msdn.microsoft.com/en-us/library/ms186273(SQL.90).aspx
December 27, 2010 at 8:55 am
If the secondary database is in "Standby" mode, it is available for Read-only access.
December 27, 2010 at 8:52 am
Try adding an output file to the job step. It should give more information regarding the job execution.
December 26, 2010 at 9:53 am
Was it working earlier? If yes, you can try stopping DBMail and starting it again.
exec sysmail_stop_sp
go
exec sysmail_start_sp
go
December 26, 2010 at 9:46 am
You can make use of DTEXEC.EXE to schedule SSIS packages from the command prompt
December 23, 2010 at 2:23 pm
However, if there are two instances running on the same server, I can't seem to figure out how to import two different sets of packages.
You need to edit the <ServerName>...
December 22, 2010 at 6:16 am
For moving the files across ROBOCOPY is very useful utility to have.
December 21, 2010 at 9:24 am
sqldba_icon (12/20/2010)
I could still do a manual failover right?
Yes you can do manual failover.
December 20, 2010 at 9:36 pm
the server is in public network and how can i access
that public network.
Try opening the server in "public network" in Windows Explorer. If it does not, then there may be...
December 20, 2010 at 9:25 pm
Hi Raghavender,
You can workaround this situation by altering the login as in the below script. More details here[/url]
ALTER LOGIN [LoginName]
WITH
CHECK_POLICY = OFF,
CHECK_EXPIRATION = OFF
December 20, 2010 at 9:21 pm
You can RESTORE the database WITH MOVE. With this you can move the data and log files to a new location. More details here
December 20, 2010 at 6:56 am
Viewing 15 posts - 181 through 195 (of 1,160 total)