I am new to oracle. I wanted a huge sample database ( with a million tuples ) . I couldn’t find any using google.
I’am using oracle 10g..
You guys know anywhere from where i can download?
Thank you ..
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
I don’t know of any “ready-made” sample database of that size
As far as I can see, you have two options:
The following benerator script generates a million rows for the table
itemsand for each row initemsit generates 10 rows initem_details(so you wind up with 1 million and 10 million rows)If you want more “realistic” names, have a look a the following script which generates products with valid EAN Codes and some “normal” looking manufacturer names:
Once you have created the data files, you can use SQL*Loader to import them into the database.
This approach has the advantage that you have full control over the tables in your test database and you can tailor them to whatever you are trying to do with it.