I have a list of account numbers in excel that I am trying to pull additional data on from an oracle database. I have a sql i can run in toad to pull the data but I'm limited to 1000 records at a time by the DB admin through toad. I have set up the InDB credentials in Alteryx, I just don't know where to go from here.
Here's my sql:
select b.s_org_id as account_id, c.first_name as contact_first_name, c.last_name as contact_last_name, c.phone as contact_phone, e.type as type, e.e_num as value, e.modify_stmp as modifiy_stamp from table_e_addr e, table_contact_role cr,table_bus_org b,table_site s,table_contact c where
s.objid = b.primary2site and c.objid = cr.contact_role2contact and cr.contact_role2site = s.objid and c.objid = e.eaddr2contact and b.s_org_id in 'account_id';
account_id is where I enter the multitude of account numbers in toad.
I'm lost from here. Any assistance would be appreciated.