Skip to main content
Announcements
Customer Spotlight: Discover what’s possible with embedded analytics Oct. 16 at 10:00 AM ET: REGISTER NOW
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

Flat Files

How to Connect Flat  Files In BI Script ? Anyone Example?

1 Reply
sibin_jacob
Creator III
Creator III

Hi Nanda,

You can use the below script to load data from a text file.

Directory;
LOAD Date_Id,
   
Physician_Id,
   
Site_Id,
   
Geo_Id,
   
#New_Patients
FROM
Test.txt
(
txt, codepage is 1252, embedded labels, delimiter is '\t', msq);

Please find the attached sample text file.

Thanks,

Sibin Jacob.C