July 16, 2009 at 4:26 am
Hello Members,
Its my first day using SQL queries on oracle 10g database.I used the following query to copy selected feilds of a table :
CREATE TABLE SAMPLE_TEMP as (SELECT CUSTOMER, BALANCE FROM CUSTOMER_ALL)
The CUSTOMER_ALL table has over 2 million records. I was successful in creating a table and copying data, but the new table could populate only 52978 records.
---- Sample data in my table
CUSTOMER BALANCE
6.28899273 0
6.28899274 0
6.28899275 0
6.28899289 625.12
6.28899292 2666.24
How do I go about fixing this ? Do i need to declare a structure and assign the number of records i will store to it ? Any guidance will help me get started.
Regards
newbie
July 16, 2009 at 8:32 am
Well, I can't really help because I don't know anything about ORACLE. I can suggest that you find an ORACLE forum to post on, although there are some ORACLE people on SQLServerCentral. You may have better luck on http://www.stackoverflow.com
Jack Corbett
Consultant - Straight Path Solutions
Check out these links on how to get faster and more accurate answers:
Forum Etiquette: How to post data/code on a forum to get the best help
Need an Answer? Actually, No ... You Need a Question
July 16, 2009 at 8:36 pm
Thanks Jack.
I found a solution from the oracle forum.
July 16, 2009 at 9:15 pm
Out of curiousity, what was your solution?
Wayne
Microsoft Certified Master: SQL Server 2008
Author - SQL Server T-SQL Recipes
July 17, 2009 at 1:49 pm
novice82 (7/16/2009)
Thanks Jack.I found a solution from the oracle forum.
Cool! Tell us what the solution is, please.
--Jeff Moden
Change is inevitable... Change for the better is not.
Viewing 5 posts - 1 through 5 (of 5 total)
You must be logged in to reply to this topic. Login to reply