Posts
Sort by recent activity
Compare replicated tables
It would be nice if there was an option to ignore replication objects. Our Development database is not replicated, but the Production one is. When I compare the two (Scripts Folder to Database), th...
Unhandled exception in bracketedSubclause()
I get an exception while entering some code in Management Studio.
The following (syntactically incorrect) line of code will cause the error:
IF (@Error = 0) AND (COALESCE((@Tes...
Suggestion: Complete should eat rest of word
Hi there.
I've been using the new beta of SQL Prompt today, and I must say that it is a great step forward from the previous beta (and version 2)
I have one suggestion, though.
I would like the com...
CandidateList stealing application focus
This is a minor issue, but annoying nonetheless.
I have a Query Analyzer (QA) open and an explorer window containing a folder filled with SQL scripts.
Without SQL Prompt, when I drag a script from ...
Tray icon: Exit useless?
After testing the new beta version I wanted to get some work done, so I wanted to end the SQL Prompt functionality.
I right-clicked on the tray icon and chose "Exit", thinking that that would end t...
^M comes out of nowhere
I have the following query:select top 4 *
from orders -- get the customers
inner join dbo.customers
on orders.customerid = dbo.customers.customerid
I Refactor, and get:select top 4
*
from
...
No prompt after single ' in comment
If there is a single quote in a comment, there is no prompt popup
Examples:
--'
select * from <no popup>
-- why doesn't this work?
select * from <no popup>
If the string is closed, i...