Activity overview
Latest activity by jkennedy
Initial DB Commit Shows Drop Statements For Security Object
I'm having issues on a couple of databases. Recreating the issue: I click Setup and map to a new folder. Go to commit changes tab. "Drop" changes are shown for multiple schemas. I try to chec...
Simple fix. On the right hand side, choose index, Reindex. Worked like a charm. / comments
Simple fix. On the right hand side, choose index, Reindex. Worked like a charm.
SQL Search - database disk image is malformed
I get this error when trying to search on a large database.
database disk image is malformed
Has anyone else experienced this?
View consolidated change reports/ Automate
I'm hoping to leverage this product on an upcoming SOD initiative. Is there an ability to automate compares? An example. We have 20 databases. Can I schedule automated change commits to occur e...
I actually resolved the issue. The problem was that we replaced a view with a table of the same name. SQL Source Control (or SQL Compare) appeared to be validating the new table definition before factoring in the view delete and an exception was thrown. Went in and manually removed the view from TFS and everything worked great. / comments
I actually resolved the issue. The problem was that we replaced a view with a table of the same name. SQL Source Control (or SQL Compare) appeared to be validating the new table definition before...
Thanks for the quick reply Brian. What's wierd is I'm actually performing a database to database compare and still getting this error. I do have SQL Source Control installed on the destination. And when trying to view history on an object, I'm getting a similar error:
A duplicate definition was found for the index [index name]. Ensure that case sensitivity options are set correctly and all object creation scripts are valid. If the problem persists, contact our support.
Maybe this is a SQL Source Control issue. / comments
Thanks for the quick reply Brian. What's wierd is I'm actually performing a database to database compare and still getting this error. I do have SQL Source Control installed on the destination. ...
SQL Compare - Disable Check for Source Drift
When attempting to deploy using SQL Compare (either creating a script or using SQL Compare) I get an error: "SQL Compare - Aborting" and the failure was in Checking for source drift. Here is the a...
Thanks Eddie. That pretty much sums it up. I really hope that this gets some looks from the dev team. And thanks again for all the time you put into answering my question. / comments
Thanks Eddie. That pretty much sums it up. I really hope that this gets some looks from the dev team. And thanks again for all the time you put into answering my question.
Just offering an update: I uninstalled RegGate Source Control again and completely deleted the C:\Users\[me]\AppData\Local\Red Gate\SQL Source Control 3 directory. I then reinstalled based on the most recent developer bundle from the redgate site and updated RedGate_SQLSourceControl_Engine_EngineOptions.xml to look like this. <?xml version="1.0" encoding="UTF-16" standalone="yes"?>
<!---->
<EngineOptions type="EngineOptions" version="3">
<PollingEnabled>False</PollingEnabled>
</EngineOptions>
After I restarted SSMS and relinked a database, I'm still polling. Any other thoughts? / comments
Just offering an update: I uninstalled RegGate Source Control again and completely deleted the C:\Users\[me]\AppData\Local\Red Gate\SQL Source Control 3 directory. I then reinstalled based on the...
Greetings Eddie, thanks for helping me dig through. I implemented the code change you suggested below, and polling continues. I also tried the below version using standalone="yes" instead of standalone="true", as per some other XML posts that I came across. Do you have any other thoughts. Are any of these setting dependant on OS version, SQL version, or some other attribute? I'd also be happy to give you a call if that would make it easier. <?xml version="1.0" encoding="UTF-16" standalone="yes" ?>
- <!--
-->
- <EngineOptions type="EngineOptions" version="3">
<PollingEnabled>False</PollingEnabled>
</EngineOptions>
/ comments
Greetings Eddie, thanks for helping me dig through. I implemented the code change you suggested below, and polling continues. I also tried the below version using standalone="yes" instead of stan...