Viewing 15 posts - 1,171 through 1,185 (of 2,612 total)
Yes, the join fields must be the same data type and the data sets must be in the same sort order, so you may have to do some sorting.
This component:
http://www.sqlbi.com/Projects/FlowSync/tabid/76/language/en-US/Default.aspx
Will...
June 25, 2008 at 5:19 am
Data type.
Try this:
SELECT FLOOR(-0.25), FLOOR(-1/4), FLOOR(-1/4.0)
-1/4 is integer/integer which gets rounded to an integer.
June 24, 2008 at 1:21 pm
SSIS comparisons are very data-type sensitive as well as case and accent sensitive. They are also sensitive to trailing spaces. You will often have to TRIM/RTRIM and UPPER...
June 24, 2008 at 11:53 am
Actually, in step "7", you need to include the second table's ID and then use a conditional split afterwards to exclude records that do not have a NULL ID.
June 24, 2008 at 11:50 am
It was me that prompted you to post again, so I hope you get some additional feedback, but I will give you some detail here.
First question - yup, the LEFT,...
June 24, 2008 at 11:49 am
I don't think I would take that approach, I would be more comfortable modifying things through the web services, but I think your approach should work.
After you made your update,...
June 24, 2008 at 11:35 am
You are trying to get the table your OLEDB Destination is writing to into a variable? Are you selecting a table in the component editor to choose the table?
I...
June 24, 2008 at 8:15 am
My thoughts exactly - for performance it will probably be impossible to distinguish the two. However, you should not use FLOAT for financial values unless you are directing rounding...
June 24, 2008 at 5:47 am
If you don't trust what your vendor is telling you, get a new vendor.
I would assume they are correct - they have probably sold these before. Most SAN's will...
June 24, 2008 at 5:31 am
Yes, that is it, you need to manage security so you have only a few sysadmin users.
Also, you cannot restore over a database that has active connections, so if you...
June 24, 2008 at 5:25 am
I have to believe you have mis-diagnosed your performance problem.
I do not even think it is possible to see any performance degredation because there is too much in the plan...
June 24, 2008 at 5:21 am
Using a MERGE JOIN, you would have to include the columns you intend to join on. With a stored procedure, you may not need these columns, but they are...
June 23, 2008 at 12:12 pm
I don't think you can, but you may want to look into the available options on the connection string. Create a .udl file, open it, and look at the...
June 23, 2008 at 12:10 pm
1) Why is it creating an interim table? Is that to temporarily hold the output from the main query before it can be input to the Excel file?
There...
June 23, 2008 at 11:37 am
Sorry, not much else to say. It will not work. Management studio uses the Native SQL Client and non-ANSI standard stored procedures.
There are some 3rd party tools that...
June 23, 2008 at 11:29 am
Viewing 15 posts - 1,171 through 1,185 (of 2,612 total)