Viewing 15 posts - 961 through 975 (of 1,228 total)
It seems there are carriage returns in your data.
Simply add the following to your stored procedure:
REPLACE(Address,CHAR(13)+CHAR(10),'')
+1
But still as you mentioned "SSIS Help with flat text file issues" suggests that you...
July 15, 2014 at 7:49 pm
Have a look at this:
http://msdn.microsoft.com/en-us/library/ms187569(v=sql.105).aspx
July 14, 2014 at 6:36 pm
Have you tried running a full processing on the cube. That might work in the short term but take a long time if you have billions of rows. I think...
July 14, 2014 at 2:19 pm
In
select @DT = start
from openxml ( @idoc, '/root', 1 )
with ( start datetime2 'start' )
Try changing the DATETIME2 portion to DATETIME2(0) to see if keeping the data type consistent...
July 11, 2014 at 6:05 pm
How did you only pick those items with a count of 1 or 2 in the batch? Did you use a CTE /inner view ?
Thanks
July 8, 2014 at 6:53 pm
An example of what I am trying to get.
guid, 2014-05-10 01:04, 2014-05-10 01:14
Would the data only be for one specific date? To span it across multiple days it is a...
July 8, 2014 at 6:40 pm
One interesting illustration you can do against SQL Server and Oracle is compare the results of a cursor to a triangular join, on each system. I think we all agree...
July 3, 2014 at 5:22 pm
vasugunda (5/20/2014)
in between 200 to 250 usd
vasugunda (5/20/2014)
no per month
That would be worth one - two hours per month 🙂
July 2, 2014 at 7:05 pm
The XML data type is not intended to be comma delimited, it is a different way of structuring data. So you are not able to pass the whole xml data...
July 1, 2014 at 10:40 am
Just for any one else interested, with an ETL issue like this you can add a Data Viewer to the data flow and see the rows thrown at the destination...
June 30, 2014 at 5:52 pm
I think you mean to say that you want one variable to hold three values... and pass this to one method on the web service.
You can pass the values...
June 30, 2014 at 5:44 pm
Where do you see the identity property for a column? I did not see it under sp_columns.
June 27, 2014 at 6:29 pm
It would help if you presented a representation of your recordset ... what you have... and what you want the final output to look like. As I see it you...
June 27, 2014 at 6:04 pm
Start by right clicking the detail row and select to add a parent group. In the popup dialogue you select the column to group by and if you want to...
June 27, 2014 at 5:59 pm
Note that in your dataflow, click the green arrow and see that you can add a data watcher. You'll see the data as it flows from the source and BEFORE...
June 27, 2014 at 12:07 pm
Viewing 15 posts - 961 through 975 (of 1,228 total)