Comments
Sort by recent activity
I replaced the <AllowIdenticalDatabases>true</AllowIdenticalDatabases>
with <include>Identical</include> and that now works as expected.
Many thanks for your help.
Regards,
Matt / comments
I replaced the <AllowIdenticalDatabases>true</AllowIdenticalDatabases>
with <include>Identical</include> and that now works as expected.
Many thanks for your help.
Regards,
Matt
Hi
Thanks for the reply - I tried adding the <exclude>identical</exclude> but that didn't make any difference.
No problem if it's a known issue - I can carry on using version 6 for now. Is there anywhere I can see a list of known issues or someway of knowing if the next verison addresses the issue?
Thanks.
Matt / comments
Hi
Thanks for the reply - I tried adding the <exclude>identical</exclude> but that didn't make any difference.
No problem if it's a known issue - I can carry on using version 6 for now. Is there an...
That works fine now. Thanks. / comments
That works fine now. Thanks.
Hi Dan,
Sent you a PM.
Thanks.
Matt / comments
Hi Dan,
Sent you a PM.
Thanks.
Matt
Uninstall/re-install didn't make any difference I'm afraid!
Thanks / comments
Uninstall/re-install didn't make any difference I'm afraid!
Thanks
haha - that makes sense. I'll update the names to get around the problem for now. Thanks. / comments
haha - that makes sense. I'll update the names to get around the problem for now. Thanks.
This happens with all projects. Unfortunately I don't have a second machine to test on.
Regards,
Matt / comments
This happens with all projects. Unfortunately I don't have a second machine to test on.
Regards,
Matt
Hi
I'm using SSMS (13.0.300.44). A reboot of the machine seems to have sorted it out!
Thanks,
Matt / comments
Hi
I'm using SSMS (13.0.300.44). A reboot of the machine seems to have sorted it out!
Thanks,
Matt
Hi,
Just installed the 6.6 beta. There are no shortcuts now (such as ctrl+K+Y for formatting). Should that be there still?
cheers
Matt / comments
Hi,
Just installed the 6.6 beta. There are no shortcuts now (such as ctrl+K+Y for formatting). Should that be there still?
cheers
Matt
Hi
In the previous version of SQL Prompt if the column name appeared in more than one table in your query the popup would have the table alias to the right. So for example if I have the following code: CREATE TABLE #test
(
Fname VARCHAR(50),
Lname VARCHAR(50)
)
SELECT *
FROM #test t
INNER JOIN #test AS t2
ON t2.Fname = t.Fname
AND lnam
the popup will show LName twice - but with no alias to the right.
Hopefully that makes sense. Let me know if not!
Cheers
Matt / comments
Hi
In the previous version of SQL Prompt if the column name appeared in more than one table in your query the popup would have the table alias to the right. So for example if I have the following c...