I have a PostgreSQL database at work that is a single table of data. The theme of the data is computers - things like physical location, MAC address, serial number, and computer name.
I need to get this data exported to an Excel spreadsheet. I have Perl with DBD::Pg loaded on a laptop, so a programmatic solution is possible if need be.
Should I process the whole thing line-by-line with a loop, or is there an easier way to get a CDL? Has anyone had any experience with doing this sort of thing successfully before?
Thanks so much.