Advertisement
Advertisement
| 07.08.2008 at 01:44PM PDT, ID: 23548238 |
|
[x]
Attachment Details
|
||
1: 2: 3: 4: 5: 6: 7: 8: 9: 10: 11: 12: 13: 14: 15: 16: 17: 18: 19: 20: |
iLineCounter = 60000
set filesys = CreateObject("Scripting.FileSystemObject")
Set text = filesys.CreateTextFile(sFullFileName)
set readfile = filesys.OpenTextFile(sReadFileName, 1, false)
Do Until ReadFile.AtEndOfStream
If readFile.Line > iLineCounter Then
text.Close
iLineCounter = iLineCounter + 60000
iFileIncrement = iFileIncrement + 1
sFileName = "MMDB_COSMOS_" & sFileDate & "_" & sFileYesterday & "004450" & iFileIncrement & ".dat"
sFullFileName = "\\unpiox51pn\ova_mbr_sql\MMDB\DBSW\PTEST\" & sFileName
Set text = filesys.CreateTextFile(sFullFileName)
End If
contents = readfile.Read(665)
text.Write contents
Loop
readfile.close
text.close
|