Comments
Sort by recent activity
Hi @Alex B, I think I've sussed out what's going on. If the schema name in which the table is being created has the same name as a database attached to the instance of SQL Server, then the error occurs. You should be able to replicate the behaviour if you try this on a SQL Server instance: USE master GO CREATE DATABASE Logging GO ...then in a new SSMS query window change context to the new Logging database then refresh the SQL Prompt cache. Then attempt to add semicolons to the following in ANY database on the SQL Server instance (not just the one newly created): CREATE TABLE [Logging].[LogEntries] (
[LogEntryId] INT IDENTITY (1, 1) NOT NULL,
CONSTRAINT [PK_LogEntries] PRIMARY KEY CLUSTERED ([LogEntryId] ASC) WITH (FILLFACTOR = 90)
)
GO
You should then experience the error. It so happens that the database in which I am trying to create the above table is also named 'Logging', I didn't think that this was relevant at first but it now seems that it might be. Thanks Chris / comments
Hi @Alex B, I think I've sussed out what's going on.If the schema name in which the table is being created has the same name as a database attached to the instance of SQL Server, then the error occ...
Assuming that you will never have to restore to a point in time between the completion of Full Backup 1 and Full Backup 2, and that you are sure that Full Backup 2 is integral, then yes you can delete the log backups.
I'd recommend keeping them for at least 3 days 'just in case', but obviously the retention policy is dependent on your requirements.
Chris / comments
Assuming that you will never have to restore to a point in time between the completion of Full Backup 1 and Full Backup 2, and that you are sure that Full Backup 2 is integral, then yes you can del...
Brilliant, thanks - seems to be working fine. Thanks again, Chris / comments
Brilliant, thanks - seems to be working fine.Thanks again,Chris
DanC said:
Hi @howarthcd I've managed to reproduce this, it still allows you to run the comparison in 14.2 although it shows an error. I've done a bug report for this and will keep you posted! Bug report reference SC-10773
Great, thanks for this. I've had to downgrade to v14.1.7.14336 as 14.2 wouldn't work against the database projects, complaining of duplicate definitions in the script files, even though there weren't any duplicates. I did find that if a RedGateDatabaseInfo.xml file is added to the root project folder then the comparison succeeds. / comments
DanC said:
Hi @howarthcd I've managed to reproduce this, it still allows you to run the comparison in 14.2 although it shows an error. I've done a bug report for this and will keep you posted...
Tianjiao_Li said:
Thanks for your patience. I'm pleased to let you know the fix has been released in 14.0.4.13251. Please upgrade at your convenience. Thanks.
I've tested this new build and found the problem has been resolved. Thanks for the quick turnaround! Chris / comments
Tianjiao_Li said:
Thanks for your patience.I'm pleased to let you know the fix has been released in 14.0.4.13251. Please upgrade at your convenience.Thanks.
I've tested this new build and fo...
A. SQL Clone / comments
A. SQL Clone
I've come up with a workaround which is to append the contents of the StandardError property (which contains the SQL error message) of the SQL Compare process to the output text file. Not ideal but it does the job in my particular situation. / comments
I've come up with a workaround which is to append the contents of the StandardError property (which contains the SQL error message) of the SQL Compare process to the output text file.Not ideal but ...
You could do one of the following:
1. Expand the file using the sqb2mtf.exe utility that is installed along with SQL Backup. You should be able to copy this from the server that was used to create the backup file: http://help.red-gate.com/help/SQLBackup5/0/en/Topics/SBU_CommandCONVERT.html#sqb2mtf
2. Install SQL Backup on the server that you are trying to install to and perform the restore within the trial period.
Chris / comments
You could do one of the following:
1. Expand the file using the sqb2mtf.exe utility that is installed along with SQL Backup. You should be able to copy this from the server that was used to create ...
Hi Nigel
Thanks for the update - this does sound promising. We're looking forward to seeing this fixed in a future release.
Thanks
Chris / comments
Hi Nigel
Thanks for the update - this does sound promising. We're looking forward to seeing this fixed in a future release.
Thanks
Chris