Viewing 15 posts - 436 through 450 (of 1,124 total)
If the footer text is static and unique within the file, you can import everything including the footer into the temp table and delete that row which pertains to the...
March 14, 2009 at 5:25 am
Basically, you need 2 connections (1 for excel, 1 for sql), 1 data flow task & 1 derived column transformation (within data flow task) that splits the value into multiple...
March 14, 2009 at 5:04 am
Please don't double post, continue discussions here
March 14, 2009 at 4:52 am
I guess there is an option in QA as well as in SSMS to enable/disable column headers display in results window.
March 14, 2009 at 4:50 am
Doesn't you mean to INSERT new records from TableA to TableB than to UPDATE? If not the latter case, then you have to do something like this.
INSERT INTO TableB
SELECT...
March 14, 2009 at 4:44 am
To make the connection dynamic, you have to set the "Connection String" property through the Expressions of Connection Manager to a User Defined Variable that will contain the connection string....
March 14, 2009 at 4:37 am
Jo's solution should work, except that you need to change PATHINDEX to PATINDEX. And also make sure you check for the string existence getting the LEFT or RIGHT of...
March 14, 2009 at 4:27 am
There are a lot of ways to transfer data from one source to another.
1. Import-Export Wizard
2. DTS Packages
3. Linked Servers
4. OPENROWSET
March 14, 2009 at 4:18 am
Since you already implemented the parent-child recursion using CTE, you can post that query along with some information about the output required for the given input. You mentioned that...
March 14, 2009 at 4:11 am
I don't think that the WHILE statement (or any conditional statements like IF/ELSE, GOTO etc.) is allowed in any CTE block. May be only DML statements are allowed in...
March 14, 2009 at 3:54 am
Since you are doing a comparison of string data and not the numerical data, and in string comparisons the value "10 marla" comes before "8 marla" (or "10" comes before...
March 14, 2009 at 3:33 am
I agree with Chris, I don't think that this looks like a real world scenario. Or may be you have posted a simpler version of the scenario. If...
March 9, 2009 at 8:41 am
You can do it by using a derived table (within the query) to get MIN of Col1 for each Col2 value and then doing an INNER JOIN of this table...
March 9, 2009 at 1:25 am
Most of the performance issues arises because of badly written query, improper indexes or excess fragmentation or no enough statistics etc.
So, if you can you provide us with the...
March 9, 2009 at 1:16 am
You can make the concatenation in the oledb source by using the sql command as the data access mode. Do a SELECT and return the a derived column by...
March 9, 2009 at 1:09 am
Viewing 15 posts - 436 through 450 (of 1,124 total)