Viewing 15 posts - 8,086 through 8,100 (of 11,678 total)
Why would you want to take one random record of each table and put it in a flat file?
February 7, 2012 at 2:59 am
Charmer (2/7/2012)
Koen Verbeeck (2/7/2012)
Because an object variable is a .NET object. It is like a ADO.NET rowset.A configuration file is an XML file, it contains strings.
object variable <> string
so how...
February 7, 2012 at 2:57 am
Ted Zatopek (2/6/2012)
February 7, 2012 at 2:55 am
Because an object variable is a .NET object. It is like a ADO.NET rowset.
A configuration file is an XML file, it contains strings.
object variable <> string
February 7, 2012 at 2:47 am
A bit back on-topic:
http://www.sqlservercentral.com/Forums/Topic1247840-364-1.aspx
Not really a worse question, but a weird one. (read all the way to the bottom)
What would justify such a business scenario?
February 7, 2012 at 2:24 am
So if I'm not mistaken, you need to take one record from each table (a random one, as no ORDER BY is specified), and you need to concatenate it to...
February 7, 2012 at 2:21 am
johnitech.itech (2/6/2012)
February 7, 2012 at 2:18 am
simhadriraju (2/7/2012)
February 7, 2012 at 1:42 am
I've got the link from this thread:
It appears that someone is having the same issue.
February 7, 2012 at 1:37 am
Wouldn't it be easier to write a SQL query that retrieves all those values in one statement (you can use the TQSL UNION clause to link different statements together) in...
February 7, 2012 at 1:35 am
edit: not a double post
Did you set the property of the variable to EvaluateAsExpression?
February 7, 2012 at 12:47 am
What is the datatype of the Health_Plan_ID variable?
If it is an integer, you need to cast it to a string first.
ps: this is just an expression, regular expressions are...
February 7, 2012 at 12:45 am
Why this scenario? What are you going to do with hundreds of seperate variables?
February 7, 2012 at 12:43 am
Elmer Miller (8/27/2008)
SELECT OrderNum
FROM Orders
Where OrderDate >= DATEADD(D,?,GETDATE())
Apparently SSIS thinks the...
February 7, 2012 at 12:39 am
Viewing 15 posts - 8,086 through 8,100 (of 11,678 total)