Page 1 of 1

Export list and status

PostPosted: Wed Jul 02, 2008 10:46 am
by nkasoff
Once I've run a list through a campaign, I need to export it back out so that we can update our call database. I don't see where this can be done. If I have to code something in php to do this, it's not a big deal, I just don't want to duplicate something you're already got. What we need for our purposes is:

SELECT vendor_lead_code,modify_date,status FROM vicidial_list FOR list_id=###;

Additional fields would be ok, those are just the ones we care about.

PostPosted: Wed Jul 02, 2008 1:27 pm
by mflorell
We usually recommend that you install PHPMyAdmin for something like this. It lets you run just about any kind of query and export it in several formats.

PostPosted: Wed Jul 02, 2008 1:32 pm
by nkasoff
Ok, just wanted to make sure there wasn't a built-in way to do it. I actually will probably just code something in php, as this will be used by people who I don't necessarily want to have setting up queries in phpMyAdmin, if you know what I mean ...