Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Mike Lewis on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Creating an *.JSON file from an EM server

Status
Not open for further replies.

Kathy L

Programmer
Jul 13, 2020
20
CA
I can do an export of my data to an *.csv file but I need to provide a third party with an *.JSON file.

We are trying to do integration with an aggregator for our stores.

Can anyone tell me how I can get a JSON file from my server?

Thanks so much!
 
You can run this in Sybase Interactive SQL:
SQL:
SELECT * FROM "micros"."emp_class_def"
for json raw;
OUTPUT TO 'c:\temp\employee_classes.txt';

alternatively you can convert your csv files to json using an online service like this one:
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top