Viewing 15 posts - 1 through 15 (of 87 total)
I need to generate the Sequence Number from both combined data; if I use "n" value from the order by,
then I get for example: 1,2,3,4 from split data and then...
December 16, 2013 at 1:45 pm
Thanks Luis for the posting of both combinations.....that is great!! Just what I needed.
Thanks for Jeff Modine splitter.
I am always learning new things!!
December 12, 2013 at 2:17 pm
I was able to use Jeff Moden's splitter at http://www.sqlservercentral.com/articles/Tally+Table/72993/
and use CHAR(10) as the delimiter, and the results are not all bunched up; but I can still end...
December 12, 2013 at 1:44 pm
CREATE TABLE [dbo].[tableA](
[CUST] [varchar](9) NOT NULL,
[WPTEXT] [varchar](4000) NULL)
INSERT INTO tableA values ('12345' ,
'6/26/08 BAD DEBT 1,351.28 BANKRUPT C-11' + CHAR(10) +
'07/03/08 BAD DEBT RECOVERY 273.07 BAL OWED 1,078.21.' + CHAR(10)...
December 12, 2013 at 10:45 am
So I was able to split column based on specific substring length and export the data to my target source; at which point I noticed data contained Line Feed.
So is...
December 12, 2013 at 10:07 am
on side note....how do you post the script inside the window box. I read best practice for posting but not seeing it.
Do you use the IFCode Shortcuts...still not quite...
December 11, 2013 at 12:23 pm
The Tally Table appears to be what I am looking to do.
I will verify some of the results but initial return values look okay.
So the code has several...
December 11, 2013 at 12:16 pm
Thanks Chris again for you investigation and posting your results...I am sure it will help anyone doing this. I know I will refer to this when I have to...
January 27, 2012 at 7:06 am
I was fortunate to have my Prod server also run Crystal Report Server. Maybe you can install just the Cystal Report Viewer?
January 25, 2012 at 6:55 am
Glad this post help get you started...and I appreciate the feed back and your posting of your results....I am sure it will help me and others.
Nice job investigating passing parms...
January 24, 2012 at 7:50 pm
so I found this topic and now I have ssis working....trick is to use data reader
AS400 - SSIS Issue Resolved.
I tried to build a connection between iSeries (as400) and SQL...
February 4, 2011 at 2:40 pm
status update...I was able to restore the project from tape backup to another location; and was able to open the packages (had to correct the connections)...but have them working again....
June 8, 2010 at 9:34 am
try installing Crystal Report Framework For .Net 2.0
C:\Program Files\Microsoft Visual Studio 8\SDK\v2.0\BootStrapper\Packages\CrystalReports\CRRedist2005_x86.msi
If not found, google it and download it.
see if this helps
April 12, 2010 at 8:43 am
I copied the four crystal reports dll files into both "C:\Program Files\Microsoft SQL Server\90\SDK\Assemblies" and "C:\Program Files\Microsoft SQL Server\100\SDK\Assemblies" as that is what I have. I just checked my...
April 9, 2010 at 7:22 am
The first thing you have to do is copy the four crystal reports dll files into the sql server folder so they can be added in the ssis script reference;...
November 16, 2009 at 8:42 am
Viewing 15 posts - 1 through 15 (of 87 total)