Viewing 15 posts - 31 through 45 (of 53 total)
Hi Girish,
Checking the MSDB is okay if the target database is also on the same server as the source. If the target DB is on a remote server it may...
September 15, 2008 at 8:09 am
Hi Chris,
The solution is supposed to apply the logs in NO RECOVERY mode so that more logs can be continuously applied automatically. The last step of actually bringing the database...
June 25, 2008 at 11:54 pm
Is it an OS copy or an FTP copy? For OS copy - copying from one server to another you can use an Execute Process Task and put the operating...
May 9, 2008 at 1:36 am
Microsoft has provided Express editions for all Visual Studio tools. So if you want a browser based solution, you can use Visual Web Developer. If you want a desktop based...
May 6, 2008 at 6:23 am
You can do this using an SSIS package. Have you tried it and are you facing any problems with it?
May 6, 2008 at 3:38 am
Doesnt seem to be a problem with Log Shipping itself. This seems to be a problem with the SQL Server Agent job trying to open the file to log its...
May 6, 2008 at 3:24 am
Vinu - one way to do this (not using stored procs) is by using the Windows Performance Monitor. In perfmon, you can configure an Alert for object Processor - "%Processor...
May 5, 2008 at 7:20 am
There are two other ways you can explore:
1. Create a linked server to the text file and then you can use INSERT queries like you do inserts into a normal...
April 11, 2008 at 7:37 am
From within a stored procedure you can use the extended stored procedure master..xp_cmdshell. So if you want to write to a text file you can use something like:
exec master..xp_cmdshell 'echo...
April 11, 2008 at 7:07 am
Matt - Depending on the situation it may not be necessary to go through 10 months of log. Example: If it is a table in which data is only being...
April 9, 2008 at 7:50 am
One way to do this could be - assuming you have the transaction logs (or can recall the tapes/files), you might use a tool like Lumigent Log Explorer or Redgate's...
April 9, 2008 at 7:30 am
Yes, SQL Server Agent is not included in SQL Server 2005 Express. To run stored procedures regularly you can use Windows Task Scheduler to invoke the sqlcmd command line utility....
April 9, 2008 at 3:56 am
Check this link. You may get some pointers from there:
April 4, 2008 at 4:14 am
There is no way in SQL Server 2000 exactly like Oracle's integration with Java. Starting with SQL Server 2005 you have CLR integration where you can run stored procedures or...
April 4, 2008 at 3:49 am
What exactly do you mean by "handle". If you want to prevent queries which are expected to run for longer than certain number of seconds, you can use the Query...
April 4, 2008 at 2:31 am
Viewing 15 posts - 31 through 45 (of 53 total)