Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

is it possible to schedule a create table job ? 1

Status
Not open for further replies.

Crystalboy1

Programmer
Sep 4, 2007
89
0
0
GB

hi there.

i want to create a stored procedure, which will drop a table A frist, then will create the table A again wid fresh data e,g

create stored procedure ABC as
begin
execute immediate 'drop table A';
create table A as
select * from longQuery....
;
end

now i want to sechedule a job to exec this stored procedure ? is it possible if not, whats the alternative...

 

Yes, it is possible, just add EXECUTE IMMEDIATE to the create table dml and schedule the procedure using DBMS_JOB package.

BUT why drop/create? Does the table structure change?
If the table structure does not change, then you can just use TRUNCATE TABLE instead of DROP and do an INSERT...SELECT... statement.
[thumbsup2]


----------------------------------------------------------------------------
The person who says it can't be done should not interrupt the person doing it. -- Chinese proverb
 
Yes there might be times when the table structure will change...
 


Yes there might be times when the table structure will change...
Care to elaborate?

Skip,
[sub]
[glasses]Just traded in my old subtlety...
for a NUANCE![tongue][/sub]
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top