12

我不知道如何将大量数据放入表中。数据不得重复

求教,可能有其他方法吗?

create table COUNTRIES (
  COUNTRY_ID   VARCHAR2(7),
  COUNTRY_NAME VARCHAR2(40),
  constraint COUNTRY_C_ID_PK primary key (COUNTRY_ID)
);


Begin
For IDS in 1..1000000
Loop
INSERT INTO "SYSTEM"."COUNTRIES" (COUNTRY_ID, COUNTRY_NAME) VALUES (dbms_random.string('L', 7), dbms_random.string('L', 15));
Commit;
End loop;
End; 
4

2 回答 2

29

如果你只想要数据量而不关心内容的随机性,

 insert into countries select rownum, 'Name'||rownum from dual
   connect by rownum<=1000000;

应该做的伎俩。

于 2012-07-31T10:53:26.960 回答
5

如果您对随机有非常具体的定义,并且不允许重复,那么异常处理可以帮助避免重复。

这种方法会很慢。如果您需要多次执行此操作,或处理大量数据,您可能希望放宽对“随机”的定义,并使用 Erich 之类的解决方案。

--Create temporary unique constraint.  (Assuming you want each column to be unique?)
alter table countries add constraint countries_name_uq unique (country_name);

--Insert random data until it worked 1 million times.
Declare
    rows_inserted number := 0;
Begin
    Loop
        Begin
            INSERT INTO COUNTRIES(COUNTRY_ID, COUNTRY_NAME)
            VALUES(dbms_random.string('L', 7), dbms_random.string('L', 15));
            --Only increment counter when no duplicate exception
            rows_inserted := rows_inserted + 1;
        Exception When DUP_VAL_ON_INDEX Then Null;
        End;
        exit when rows_inserted = 1000000;
    End loop;
    commit;
End;
/

--Drop the temporary constraint
alter table countries drop constraint countries_name_uq;

--Double-check the count of distinct rows
select count(*) from
(
    select distinct country_id, country_name from countries
);

Result
------
1000000
于 2012-08-01T06:20:41.847 回答