Viewing 15 posts - 5,806 through 5,820 (of 7,168 total)
Jeff Moden (6/27/2011)
opc.three (6/27/2011)
SELECT jc.OrderNum,
dbo.GROUP_CONCAT(DISTINCT OrdCountry) AS OrdCountries
FROM ...
June 28, 2011 at 6:49 am
Jeff Moden (6/27/2011)
opc.three (6/27/2011)
stormsentinelcammy (6/27/2011)
Please post how to select the tables belonging to a certain schema 🙂
Please start a new thread 🙂 The OP wanted to know if it was...
June 28, 2011 at 6:39 am
You're welcome 🙂
June 27, 2011 at 3:59 pm
Like I said, not arguing anything you said. Compliance was not the issue at hand in my scenario.
June 27, 2011 at 3:50 pm
Nadrek (6/27/2011)
opc.three (6/27/2011)
Elliott Whitlow (6/27/2011)
June 27, 2011 at 3:41 pm
Lowell (6/27/2011)
yeah, when i look at powershell at first, i have no idea what it does or what it can do.
Seriously, WTF is that? 😛
June 27, 2011 at 3:01 pm
If you're using the # prefix SQL Server will ignore it and use tempdb anyway. This:
CREATE TABLE AdventureWorks.dbo.#tbl (a INT);
Results in a table being created in tempdb and this warning...
June 27, 2011 at 2:52 pm
seftest_09 (6/27/2011)
Hello, Thanks for the reply. Can you give me an example of how to use Multi-statement table valued function.Thanks,
Ratan
The function ufnGetContactInformation in this Books Online article is a mTVF...
June 27, 2011 at 2:40 pm
I don't know of antyhing in native T-SQL that can do what you're asking. SQLCLR could provide the illusion of native T-SQL, or you could shell out to a cmd...
June 27, 2011 at 2:30 pm
Barret-330682 (6/27/2011)
SELECT AdditionalData.value('
declare namespace C="test";
(/C:DocumentElement/C:AdditionalData/C:Value2)[1]', 'VARCHAR(12)') AS answer
from table
I am trying to pull data from an...
June 27, 2011 at 2:27 pm
Boooo 🙂 Poor design. Please save yourself the trouble and do not do this work in a trigger. Save your "work to do" request to a table and have another...
June 27, 2011 at 2:09 pm
You're welcome 🙂
PS You did a nice job posting the problem and expected results in your initial post, but I would not have posted a solution had you not provided...
June 27, 2011 at 2:08 pm
No, not in your scenario.
June 27, 2011 at 2:03 pm
Do you mind posting some sample DDL and DML so we can build tables on our side, as well as the query(ies) you have tried so far?
http://www.sqlservercentral.com/articles/Best+Practices/61537/%5B/url%5D
June 27, 2011 at 1:53 pm
Viewing 15 posts - 5,806 through 5,820 (of 7,168 total)