Comments
Sort by recent activity
Apologies, I haven't. Can I ask if this is a SQL Source Control project at the client or a SQL Change Automation in VS project? / comments
Apologies, I haven't. Can I ask if this is a SQL Source Control project at the client or a SQL Change Automation in VS project?
You can use the abort flag from SQL Compare for high level warnings, which includes drops. It has other items, so you want to be careful and experiment in QA/staging to understand the things you do that might trigger this. It might be too gross for you. What I'd probably do is look for the specific items I want to avoid and use a regex to scan the update.sql script. That way I'd get a note of problems. That being said, you need a way to get around this, or disable this at times, since I will almost guarantee that you will find exceptions over time.
/ comments
You can use the abort flag from SQL Compare for high level warnings, which includes drops. It has other items, so you want to be careful and experiment in QA/staging to understand the things you d...
You can use cmd line deployment with SSIS: https://docs.microsoft.com/en-us/sql/integration-services/ssis-quickstart-deploy-cmdline?view=sql-server-2017 However, if you want more tools, like testing, I'd look at Pragmatic works tools here.There also are a few extensions in the marketplace
[image]
/ comments
You can use cmd line deployment with SSIS: https://docs.microsoft.com/en-us/sql/integration-services/ssis-quickstart-deploy-cmdline?view=sql-server-2017However, if you want more tools, like testing...
You are more than welcome. Please ask more questions, or let us know how this goes. / comments
You are more than welcome. Please ask more questions, or let us know how this goes.
Ah, that makes sense.
What version of SCA do you have? I assume you see the spinning arrows when clicking Refresh, but does the cursor not go to a waiting image when the Import and Generate is clicked? I wouldn't expect that for this part of the actions. If this a large procedure? This should be a simple scripting once the change is detected.
/ comments
Ah, that makes sense.
What version of SCA do you have? I assume you see the spinning arrows when clicking Refresh, but does the cursor not go to a waiting image when the Import and Generate is cli...
Thanks, I'll ask about this. I've got 3.0.18 as well. The generation should be very quick / comments
Thanks, I'll ask about this. I've got 3.0.18 as well. The generation should be very quick
I'm slightly confused, but maybe you can help. When you say modestly sized, I assume you have a number of tables, views, procs, etc. When you say the import and Generate Scripts take a long time to complete, I assume you mean that only one object changed, so why was this taking so long? If that's right, the reason is that we need to build a dependency tree. You change one proc, but does that cause other issues in a chain? When we generate a script, we need to determine not only what changed, but what the potential issues are. If you're changing one procedure, that's usually all that's affected but we can't know that, especially if the change is from another client SSMS/VSCode/ADS. So we walk a tree to see what's changed and then need to compare that to the existing view to capture the change. At times generating the script is non-trivial, and it can be hard to do this accurately without doing a full compare.
/ comments
I'm slightly confused, but maybe you can help. When you say modestly sized, I assume you have a number of tables, views, procs, etc. When you say the import and Generate Scripts take a long time to...
Apologies, the target is really a release term. That's where you pick the end database. For build, you need a temporary place to compile the code. The temporary server is where the code would run. This needs to support TRIM() [image] / comments
Apologies, the target is really a release term. That's where you pick the end database. For build, you need a temporary place to compile the code. The temporary server is where the code would run....