Comments
Sort by recent activity
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.
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...