Viewing 15 posts - 1,711 through 1,725 (of 2,007 total)
TheSQLGuru (2/1/2011)
What am I - chopped liver? I think I did mention UNpivot, right?? :hehe:
Yep yep, my bad. Skimmed the first post. Only came on here because I...
February 1, 2011 at 9:18 am
Jeff Moden (2/1/2011)
I really appreciate the glowing review but the op wants to UNpivot.
And that's what comes from skimming the first post and not reading the thread. . .
February 1, 2011 at 8:36 am
lefrancisco1 (1/28/2011)
Folks,I have three subqueries i made them as single and returned three columns as a|b|c
now i need to changes this into single rows
as
a
b
c
need urgent help
Simple...
February 1, 2011 at 7:46 am
select count (codaux) from
(select codaux,nomaux from aqua.softland.cwtauxi
except
select codaux,nomaux from 0718.softland.cwtauxi)
Do you understand?
January 21, 2011 at 8:58 am
Please read this link --> http://www.sqlservercentral.com/articles/Best+Practices/61537/
to see how to post a question that people will want to help you with. I doubt anyone will want to take the time...
January 21, 2011 at 4:43 am
Is the problem already in the XML files?
I believe the problem is to do with XML serialization/de-serialization in .NET
January 14, 2011 at 8:42 am
DECLARE @table AS TABLE(Id INT, Product CHAR(5), TT INT, Week CHAR(2))
INSERT INTO @table
SELECT 1, 'Test1', 75, '1'
UNION ALL SELECT 2, 'Test2', 20, '1'
UNION ALL SELECT 3, 'Test1', 60, '2'
UNION ALL...
January 13, 2011 at 6:58 am
If there's no relationship then how do you know whether or not you have correct results? You could just merge the tables, but you can't g/tee the results.
January 13, 2011 at 3:20 am
Homework? Interview questions?
Best bet is BOL, then come back if you have specific questions.
January 12, 2011 at 10:29 am
January 6, 2011 at 10:29 am
Thanks. I've spent some time looking at the Subscriptions table and written an ugly little replace statement to get out all of the relevant information from the extensionsettings and...
January 6, 2011 at 9:23 am
Yes, I got what you meant. What I mean is; you need to change the expression that generates the filename to a variable, then add a new script task that...
December 30, 2010 at 10:23 am
Viewing 15 posts - 1,711 through 1,725 (of 2,007 total)