Viewing 15 posts - 31 through 45 (of 1,064 total)
Possibly because of this:
- The TCP protocol is enabled
- I have set up IP2
as follows:
Active: Yes
Enabled: No
IP Addres: 192.168.0.3
You will need to enable it, and restart the instance. After...
September 17, 2015 at 3:52 am
Is the database being replicated? The log can't be cleared until any transactions have been replicated.
September 15, 2015 at 2:44 am
If you don't care about the performance of the archiving routine, then do it one row at a time.
Get a list of the rows to be archived into a temp...
March 19, 2014 at 4:09 am
You may also want to take a look at your Distribution Agent Profile.
The default profile will try to apply 100 publisher transactions before issuing a commit at the subscriber. Therefore...
February 22, 2013 at 1:44 am
You've got an erroneous line with '177' half way down the code you posted.
February 20, 2013 at 1:42 am
That should work... are you sure the transaction log backup file actually has a backup of the original forms database?
Run a restore of the log with headeronly to verify.
RESTORE HEADERONLY...
February 20, 2013 at 1:33 am
I would start off with SQL Profiler, and profile execution of the stored procedure at the statement level to try and identify the actual statement that is causing the exception.
February 7, 2013 at 4:35 am
At a guess, unless you are terminating rows with just a carriage return instead of a carriage return and line feed, the last line of your format file should read...
February 6, 2013 at 1:28 am
Have you run a full backup at any time?
Differential backups will only run if you've done a full backup, as they only back up changes made since the last...
February 5, 2013 at 1:07 am
It will delete both.
The parameter you are passing to sp_delete_backuphistory is telling it to delete ALL backup history OLDER than that date.
January 17, 2013 at 1:20 am
The behaviour you are seeing will be caused by different settings between VS2010 and SSMS for the "CONCAT_NULL_YIELDS_NULL" connection setting.
January 11, 2013 at 8:23 am
You should still see the output from select @sql even with the display of the out params.
The fact that you can't see anything would lead me to...
January 11, 2013 at 7:09 am
thedavegray (1/11/2013)
Yes the command works fine when copied out of the text visuaizer in VS2010 debugger into SSMS
OK, but when running the procedure in SSMS, does it generate the same...
January 11, 2013 at 6:41 am
Do you end up with the same command if you run it in SSMS instead of the debugger?
One thing that doesn't look right... you have declared @YYYYMMDD as CHAR(10), but...
January 11, 2013 at 5:50 am
Start off by replacing the EXECUTE (@Sql) with PRINT @sql so you can see the exact command you have generated.
January 11, 2013 at 5:28 am
Viewing 15 posts - 31 through 45 (of 1,064 total)