Activity overview
Latest activity by fordc03
I also am having the same issue although I don't have any triggers in my database.
I did submit the bug to development. / comments
I also am having the same issue although I don't have any triggers in my database.
I did submit the bug to development.
Schedules Conflict - Log Shipping Restore
When I open SQL Backup, I get greeted with lots of red on the timeline because the schedules conflict...
Of course they conflict, I have 80 databases to Log Ship.
Aaaand to make matters worse, when...
How to Deploy Source Control DB without SSMS Plugin?
I'm sure this question has been asked, but let's say I want to take my now versioned database and deploy it to 50 other databases (all with different names)?
Let's also say that the schema varies e...
I am also experiencing the same issue.
The only difference is that our server is behind a pretty locked down firewall.
Does the installer do any kind of internet validation on the installer? / comments
I am also experiencing the same issue.
The only difference is that our server is behind a pretty locked down firewall.
Does the installer do any kind of internet validation on the installer?
CodantiM wrote:
Given this code:
SELECT
<select start>'Test' AS Field1,
'Test2' AS Field2,
''<select end> AS Field3
INTO #Temp
And having the code between <select start> and <select end> selected when you hit TAB to indent it.
This is what you get:
SELECT
'Test' AS Field1,
'Test2' AS Field2,
''' AS Field3
INTO #Temp
while this is what I expect: SELECT
'Test' AS Field1,
'Test2' AS Field2,
'' AS Field3
INTO #Temp
this happened to me as well earlier after installing the update, although I couldn't get it to do it again after re-selecting the start and end points and tabbing again.
Just wanted to confirm you're not crazy. [image] I just don't know how to duplicate it myself, but when it happened it was quite annoying. If I can duplicate before anyone else posts I'll do so. / comments
CodantiM wrote:
Given this code:
SELECT
<select start>'Test' AS Field1,
'Test2' AS Field2,
''<select end> AS Field3
INTO #Temp
And having the code between <select start> and <sele...