Viewing 15 posts - 2,536 through 2,550 (of 5,356 total)
#3
The short answer is use slow, proprietrary dynamic SQL to kludge a query
together on the fly with your table name in the FROM clause.
The right answer is never pass...
February 24, 2004 at 2:45 pm
#2
>> a generic function that concatenates results of a
query into a string ...<<
In a client server architcture, the display is done by the front end,
not in the database...
February 24, 2004 at 2:43 pm
Just before it's time to go to bed and hopefully get some sleep.
As for big name quotes is also ask, what now follows...
February 24, 2004 at 2:42 pm
Okay, I'll jump in with my standard link on dynamic SQL. SQL Server MVP Erland Sommarskog has written some fine stuff on that at http://www.sommarskog.se/dynamic_sql.html .
February 24, 2004 at 2:35 pm
Without knowing your query, table structure and indexes it will be difficult to tell what is going on. As always with dynamic sql
...
February 24, 2004 at 1:50 pm
The only thing I can think of is NO_OUTPUT if you use xp_cmdshell in your s_proc.
HTH
February 24, 2004 at 8:35 am
Yes! Now you can change history without notice.
Isn't that brilliant? ![]()
February 24, 2004 at 7:45 am
Use of a cursor for calculation of the median (financial or statistical ?) ???
CREATE TABLE #dist (c1 int)
INSERT INTO #dist VALUES (2)
INSERT INTO #dist VALUES (3)
INSERT INTO #dist VALUES (1)
INSERT...
February 24, 2004 at 7:32 am
Stefan,
which messages do you mean? Can you post an example?
February 24, 2004 at 7:08 am
Not that I don't like any visual stuff, but IMHO the best front end for most of the job is Query Analyzer, because only with QA you are forced to...
February 24, 2004 at 5:23 am
If you are sure that you don't have data longer than 8,000 characters you can use a somewhat messy workaround. Open the table in EM and change the data type...
February 24, 2004 at 2:19 am
I am not going with the author or the mainstream here.
As I'm too tired to write a pamphlet and in addition have only a very limited english vocabulary compared to...
February 24, 2004 at 1:27 am
Hey, fhanlon, you were quicker ![]()
Yes, I also checked the book yesterday, so send the broken...
February 24, 2004 at 12:59 am
Viewing 15 posts - 2,536 through 2,550 (of 5,356 total)