Oracle
 sql >> Baza danych >  >> RDS >> Oracle

Jak ustawić Incemental na true dla wielu tabel z tym samym właścicielem przy użyciu DBMS_STATS.set_table_prefs?

Ten blok PL/SQL (który jest oparty na twoim komentarzu w innym pytaniu) przechodzi w pętlę przez podzielone na partycje tabele dla użytkownika i ustawia jego przyrostową preferencję na wartość true.

begin
    for a in
    (
        select distinct (table_name), owner
        from all_part_tables
        where owner = 'SOME_USER_NAME'
            --Ignore objects in the recycle bin.
            --There are other "tables" that may need to be ignored, 
            --such as external tables, storage tables, etc.
            and table_name not like 'BIN$%'
        order by table_name
    ) loop
        dbms_stats.set_table_prefs(a.owner, a.table_name, 'incremental', 'true');
    end loop;
end;
/



  1. Database
  2.   
  3. Mysql
  4.   
  5. Oracle
  6.   
  7. Sqlserver
  8.   
  9. PostgreSQL
  10.   
  11. Access
  12.   
  13. SQLite
  14.   
  15. MariaDB
  1. Jak zainstalować ruby-oci8?

  2. Problem TO_DATE z funkcją Oracle DBMS_SQL.EXECUTE

  3. oracle diff:jak porównać dwie tabele?

  4. Oracle SQL:wyodrębnianie tygodnia roku od daty daje losowe wyniki

  5. Funkcja tabeli Oracle z CTE