cancel
Showing results for 
Search instead for 
Did you mean: 
Subscribe

When we moved from SA9 to SA11 one of the biggest complaints from developers and users was the loss of the feature in SQL Central to save data to an excel format. This was almost a staple for support team members who frequently ran queries for our customers and sent them data via spreadsheets.

Now the nearest feature is saving as HTML and then reprocessing the HTML into a spreadsheet - but this introduces a number of formatting and conversion steps.

Is there any chance this feature may return in a future version of SQL Central - or is there an alternate way to get the data into excel more quickly?

View Entire Topic
Breck_Carter
Participant

I assume you mean Sybase Central. However, I don't see where in Sybase Central you can save data in any format, let alone Excel.

If you launch ISQL and do a SELECT, there is a Data - Export facility that omits Excel... is that what you are talking about?

Anyway, ISQL has (regained? or never actually lost?) the ability to OUTPUT to Excel in 11.0.1.2587...

select @@VERSION, * from inventory;
OUTPUT USING 'Driver=Microsoft Excel Driver (*.xls);DBQ=c:\\\\temp\\\\inventory.xls;READONLY=0' 
INTO "inventory";

It doesn't appear to be documented in the V11 Help, although I did test it (see below), but it is documented in the V12 Help: http://dcx.sybase.com/index.html#1201/en/dbusage/load-s-4183756.html


Re ISQL Data  Export support for Excel format

glenn_barber
Participant
0 Likes

Hi Breck

You are right - they were launching ISQL from inside Sybase Central - and if you select Data / Export ... you get an Export Wizard where the Option to Save as an Excel File disappeared.

Did it reappear in the Export Wizard in Version 12?

Thanks

Glenn

Breck_Carter
Participant
0 Likes

No, it didn't reappear in V12... I'm sure there is some [expletive deleted] reason that you have to use that funky OUTPUT syntax now... maybe they decided that text completion was a higher priority than supporting FORMAT EXCEL ( zinggggg 🙂

glenn_barber
Participant
0 Likes

I added a comment to my original question - as the Import from excel may be an even bigger issue with the support people here.