Hi Aydistant,
>> My question is, does anyone know of a method in which I can fill a brand new tablespace with any specified amount of data without manually inputting all of it?
You have many choices. Here is how to add numeric data to a table quickly:
http://www.dba-oracle.com/t_test_data_date...eration_sql.htm************************************************
You can also populate test data from dictionary stuff:
create table mytest as select * from dba_objects
create table bigtable as select * from dba_hist_sqlstat;
Double the size:
insert into bigtable (select * from dba_hist_sqlstat);
************************************************
And you can generate test data with dbms_random too:
http://www.dba-oracle.com/oracle_tips_ault...random_data.htm************************************************
If you want tools, there are several tools and methods for generating test data for Oracle:
http://www.dba-oracle.com/t_test_data_generation.htmSTATSPACK - You can easily write your own SQL capture, directly from the STATSPACK stats$sqlstat table.
AWR - AWR captures historical SQL in the dba_hist_sqlstat table.
SQL Tuning Sets – This 10g tool grabs SQL from the library cache or Oracle.
SQL Performance Analyzer (SPA) – This new 11g tool captures representative SQL workloads.
Mercury LoadRunner - A popular tools for simulating the real-world effect of an Oracle system change.
Quest Benchmark Factory - A complete environment for showing the effects of an Oracle change.
DBGEN - The TPC-H tools, dbgen and qgen allow for the development of anywhere from a gig to a terabyte databases.
Hammerora - The Hammerora product provides a means to create a pseudo-TPC-C database and generate loads against it.