Jul 23, 2020 #1 Kathy L Programmer Joined Jul 13, 2020 Messages 20 Location 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!
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!
Jul 23, 2020 #2 codexPOSed Programmer Joined Feb 19, 2020 Messages 57 Location US 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: https://csvjson.com/ Upvote 0 Downvote
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: https://csvjson.com/
Aug 18, 2020 Thread starter #3 Kathy L Programmer Joined Jul 13, 2020 Messages 20 Location CA Great thanks so much! Upvote 0 Downvote