Dan Watt
Dan Watt
This exact issue happens to me periodically as well on my Mac installation. The only solution is to remove the package and re-add it.
I have for sure encountered this in CFMs that have CFScript blocks in them. I have not tried creating a new empty file. Copy and pasting works fine. I will...
Typing a '>' into a CFM: chr evt: > (0x3e) command: close_cftag view.window().run_command('close_cftag') - does nothing Sublime 2.0.1 b 2217 Coldfusion package 2012.12.08.14.27.36
It looks like someone submitted a patch to add this support to Schema Spy 5: https://sourceforge.net/p/schemaspy/feature-requests/85/
This is probably a completely different request, but what if instead there was the ability to do some analysis on the values without revealing the data itself? Ex: how many...
~ 600 tables on the main relationship graph. I had thought about color coding at one point years ago, but that probably would not scale well past 16 or so...
This is a weird schema. There is one table that is linked to by 60 other tables. There are other, weirder relationships. Its unweildy, but even with all of the...
It looks like some people have made progress porting Graphviz to JS (that is, its probably converting the executable into javascript code and emulating) http://www.webgraphviz.com/ https://dreampuf.github.io/GraphvizOnline/ http://viz-js.com/
Something like this (taken from [here](http://sqlblog.com/blogs/john_paul_cook/archive/2010/08/24/script-to-list-synonym-contents.aspx)) - which is very similar to what gimmesomethinggood wrote ``` sql SELECT name, COALESCE(PARSENAME(base_object_name, 4), @@servername) AS serverName, COALESCE(PARSENAME(base_object_name, 3), DB_NAME(DB_ID())) AS dbName, COALESCE(PARSENAME(base_object_name,...
They can't be used in FKs, at least not in sqlserver. They can, however, span across schemas, databases, and even linked servers. From here: http://www.sqlteam.com/forums/topic.asp?TOPIC_ID=163358 ``` sql CREATE TABLE a(a...