Viewing 15 posts - 1 through 15 (of 30 total)
Thank you Tim that was my issue.
I was trying to eliminate the sys and schema's from displaying on the tables so the users would not get confused.
Which I still have...
December 22, 2009 at 12:13 pm
That was the issue, and is fixed.
December 22, 2009 at 11:37 am
Where would I find the security for 'View any database'?
This maybe my issue.
December 22, 2009 at 10:58 am
What I should of indicated was the mdf is in a specific folder, however the mdf is dropped randomly (no set date).
October 27, 2009 at 2:19 pm
Found the issue.
The source system was converting the text files to a dos format (need this for sql2000 not sql2008).
We removed the unix to dos conversion and the extra {CR}...
October 20, 2009 at 3:06 pm
I've loaded the file in excel and it looks good.
From my research it looks as if it may be trailing nulls, however I've tried filling the nulls with a value...
August 20, 2009 at 6:40 am
Maybe I stated the delimiter backwards.
Should be row delimiter cr/lf
and column delimiter tab.
See attachment
August 19, 2009 at 1:30 pm
Thanks for the quick reply.
Yes, I've verified the cr/lf is truly there.
August 19, 2009 at 1:25 pm
Thanks, Norman
objFile.WriteLine("How do I reference the trailer row here?")
strFile = "c:\output.txt" ' e.g. c:\output.txt
' ------ END CONFIGURATION ---------
const ForAppending = 8
set objFSO = CreateObject("Scripting.FileSystemObject")
set objFile = objFSO.OpenTextFile(strFile, ForAppending, True)
objFile.WriteLine("Script completed:...
February 28, 2008 at 8:40 am
Hi Norman,
I do not have the knowledge to write a ActiveXScript Task.
Any help would be greatly appreciated!;)
February 27, 2008 at 12:23 pm
I use DTS to map and load the data in a table.
I guess I do use QA to view the data.
See attached file.
February 8, 2008 at 5:20 am
Okay, I'll need a little help.
In DTS I created a BulkInsertTask, how do I specify columns 1,3 and 33?
February 7, 2008 at 11:46 am
Thanks I've set up the exception file.
I'm not using Query Analyzer:unsure:
If I delete part of col033 the file loads.
February 7, 2008 at 11:40 am
I've attached the txt file.
I added the msgbox.
Where do I find the exception log?
February 7, 2008 at 10:17 am
Okay changed to:
Changed field back to varchar(6000)
Function Main()
DTSDestination("MAID") = DTSSource("Col001")
DTSDestination("Mem_ID") = DTSSource("Col003")
If Len( DTSSource("Col033")) > "6000" Then
Main = DTSTransformStat_ExceptionRow
Exit function
End If
DTSDestination("Ac_Ded_Yr") = DTSSource("Col033")
Main = DTSTransformStat_OK
End Function
AC_Ded_Yr is...
February 7, 2008 at 9:14 am
Viewing 15 posts - 1 through 15 (of 30 total)