BookmarkSubscribeRSS Feed
venkatnaveen
Obsidian | Level 7
i have a textfile with 100gb data in that i have company names genpact tcs records there how can i import only tcs record in to my dataset?ular

3 REPLIES 3
LinusH
Tourmaline | Level 20

We need quite some more info to help you out.

  • You wish to subset on company name, and keep Genpact and TCS?
  • What format is the file?
  • What do you intend to do with the subset afterwards?

If it's in a standard file layout, take a look at PROC IMPORT.

Use a data step or SQL to subset your data.

If you are preparing a scheduled job, you might want to consider other options to optimize it.

Data never sleeps
Patrick
Opal | Level 21

You need to give us some representative sample data and then tell us how the result should look like.

Is this using SAS DI Studio (which version?) or coding?

With coding it could look like below pseudo code:

...

input var @;

if var ne 'certain value' then return;

input b c d;

....

output;

run;

venkatnaveen
Obsidian | Level 7

Thanks

Ready to join fellow brilliant minds for the SAS Hackathon?

Build your skills. Make connections. Enjoy creative freedom. Maybe change the world. Registration is now open through August 30th. Visit the SAS Hackathon homepage.

Register today!
How to connect to databases in SAS Viya

Need to connect to databases in SAS Viya? SAS’ David Ghan shows you two methods – via SAS/ACCESS LIBNAME and SAS Data Connector SASLIBS – in this video.

Find more tutorials on the SAS Users YouTube channel.

Discussion stats
  • 3 replies
  • 986 views
  • 0 likes
  • 3 in conversation