Viewing 15 posts - 2,401 through 2,415 (of 7,168 total)
I am assuming this was your post on MSDN and it is now resolved:
January 13, 2013 at 9:25 am
Here is a tutorial on how you might be able to capture the number of affected rows into a variable, depending on how your SQL Statement in your Execute SQL...
January 13, 2013 at 9:19 am
My solution requires the use of a Tally Table (a.k.a. a Numbers Table). For this example my tally table is stored in the master database and is made accessible by...
January 13, 2013 at 9:08 am
I would not recommend using xp_cmdshell for this. I recommend keeping the option disabled on your instance if at all possible. Truthfully I would not do this work in T-SQL...
January 13, 2013 at 8:27 am
Physical objects have at most one descendent virtual object row.
Virtual objects have zero or more descendent virtual object row(s).
Which might be more common, someone asking to which physical object does...
January 13, 2013 at 8:08 am
If you have a complex XML file and SSIS detects 80 outputs then you'll have to process each of the 80 outputs in some form or manner if you want...
January 12, 2013 at 10:34 pm
Please do not cross-post. It just fragments responses and wastes people's time.
Direct all replies here:
January 12, 2013 at 10:34 pm
AD Groups as SQL Logins and Database Users work great unless you need the User to have a default schema. In SQL 2012 the loop has been closed, but this...
January 12, 2013 at 10:32 pm
If you have a complex XML file and SSIS detects 80 outputs then you'll have to process each of the 80 outputs in some form or manner if you want...
January 12, 2013 at 10:23 pm
Please do not cross-post. It just fragments replies and wastes people's time.
Direct all replies here: http://www.sqlservercentral.com/Forums/Topic1406350-148-1.aspx
January 12, 2013 at 10:18 pm
From the error message the package appears to be failing on the OLE DB Source so I am wondering, is it even reaching the Data Conversion you said you added?...
January 12, 2013 at 10:16 pm
That can be caused by two sessions executing the proc with different SET options, e.g. ARITHABORT. Each execution plan has within it the set of server options that are set....
January 12, 2013 at 10:08 pm
Sean Lange (1/11/2013)
January 12, 2013 at 9:01 pm
Not a problem. I hadn't played with unpivoting data in a long time so I took it on as a learning challenge. It took me about a half hour to...
January 12, 2013 at 4:56 pm
This is unpivoting multiple columns. See how these results look:
WITH TestQuestions(Id, Question, AnswerNumber, Answer, IsCorrect)
AS (
...
January 12, 2013 at 5:30 am
Viewing 15 posts - 2,401 through 2,415 (of 7,168 total)