Viewing 15 posts - 181 through 195 (of 1,957 total)
Please see the documentation on MSDN: Specifying Paths to External Items
Paths to items on a file system are not supported.
September 10, 2015 at 9:43 am
Sean Lange (9/10/2015)
September 10, 2015 at 9:38 am
Hi Gail,
Thanks for explaining all that, I'll have to have a few reads to make sure I understand it fully.
September 7, 2015 at 12:38 pm
For this simple example, I believe this form may produce a good result:
(only tested on SQL 2016 CTP 2.3 using Kevin's test data from a few posts back)
SELECT first_name, last_name
FROM...
September 6, 2015 at 2:09 pm
I wouldn't usually answer without checking, but I don't have time right now, sorry...
That said, you could try placing a very small object (maybe a textbox with white font) below...
September 3, 2015 at 5:20 pm
Steve Jones - SSC Editor (9/2/2015)
Ed Wagner (9/2/2015)
September 3, 2015 at 3:06 am
Try running
EXEC('SELECT net_transport, auth_scheme
FROM master.sys.dm_exec_connections
WHERE session_id = @@SPID;') at PROD;
September 2, 2015 at 5:33 pm
I would imagine that the value of @@SPID is being taken from the local session, so is returning details of a completely different session on the PROD server.
e.g. your local...
September 2, 2015 at 5:32 pm
Thanks Luis, for a well written article.
There are a couple of things to note when using this technique (I use set based loops regularly) that I think are worth re-iterating...
August 31, 2015 at 3:58 am
Unfortunately, there is not one perfect answer because of dynamic sql.
I could build a query that dynamically builds the name of a table and no amount of string searches or...
August 28, 2015 at 6:18 pm
Nice List, thanks.
I would include Collation in #11 - mixed collations can be very bad and hard to diagnose for performance.
August 28, 2015 at 5:42 pm
Thanks for a very informative article!
I gave you a 4* instead of 5* simply because I personally prefer (as the years go by) to have the pertinent information right there...
August 26, 2015 at 5:31 am
I suspect Jeff is right and your function is a (i)TVF in database "dba", so needs to be referenced in the FROM clause, not the SELECT.
August 25, 2015 at 5:12 pm
SQLPain (8/25/2015)
the current result set contains only 500 values, I don't think it would ever go higher than that. what would be the difference in the...
August 25, 2015 at 5:05 pm
Jeff Moden (8/25/2015)
greg.bull (4/27/2015)
In essence to combine these:
'font/@color' = case...(set up...
August 25, 2015 at 5:00 pm
Viewing 15 posts - 181 through 195 (of 1,957 total)