Viewing 15 posts - 2,296 through 2,310 (of 11,678 total)
You cannot load directly to a TSQL variable in SSIS (two different tools).
You can perhaps load the XML file as one giant string into a temp table and then use...
July 17, 2014 at 5:05 am
maharaj.narayanan (5/25/2014)
I'm trying to write the table name and their count of an oracle database. so i hard coded all the select statement with union, when i use the query...
July 17, 2014 at 1:13 am
scuby.me (7/16/2014)
I dont see ado.net under Data flow sources in ssis 2005. How do i bring this source?Help
I believe in SSIS 2005 it is called Datareader.
http://msdn.microsoft.com/en-us/library/ms137897(v=sql.90).aspx
July 17, 2014 at 1:12 am
Nice and easy question, thanks.
July 17, 2014 at 1:03 am
KoldCoffee (7/17/2014)
...besides, I gave a whirl and the package failed on the execute process task, whereas when I use nvarchar the remainder of the tasks complete...and error with :
"Warning: The...
July 17, 2014 at 1:01 am
marg 14154 (7/16/2014)
Just one more thing, there is some cases in which there are some values that should be on the same...
July 17, 2014 at 12:50 am
I would put foreign keys to table A-D into the customer table.
Join all tables together and then a giant case statement that calculates the custome type.
Or are the business rules...
July 16, 2014 at 1:54 pm
July 16, 2014 at 1:52 pm
Sean Lange (7/16/2014)
Lynn Pettis (7/16/2014)
July 16, 2014 at 1:44 pm
Raghavendra Mudugal (7/16/2014)
Koen Verbeeck (7/16/2014)
Unless a clustered index was already defined. 🙂
how you mean? "already"
this simple statement creates a clustered index
CREATE TABLE TT1
(
ID INT PRIMARY KEY,
NAME VARCHAR(10)
);
You...
July 16, 2014 at 6:04 am
Ed Wagner (7/16/2014)
"hmmm...I wonder how to interpret this"
Well, a primary key (constraint) can be considered an object at the logical level, while an index exists purely at the physical...
July 16, 2014 at 5:44 am
Take a look at the STUFF function.
July 16, 2014 at 3:13 am
Ever used google before?
http://stackoverflow.com/questions/190776/how-to-have-dynamic-sql-in-mysql-stored-procedure
July 16, 2014 at 2:16 am
Phil Parkin (7/16/2014)
Regarding this... default candidate key to be used to select particular rows of the table
Can anyone expand on what is meant by 'default' here?
When there are multiple candidate...
July 16, 2014 at 2:08 am
Put a breakpoint on the for each loop and before it starts iterating check if all the values of the variables and the expressions are what you expect.
July 16, 2014 at 1:47 am
Viewing 15 posts - 2,296 through 2,310 (of 11,678 total)