BookmarkSubscribeRSS Feed
GeorgeSAS
Lapis Lazuli | Level 10

Hello everyone,

 

After I submited sql in SAS to created table in Oracle I want to check table status,I find the code below using dbms_stats.gather_table_stats:

 

proc sql;
&connectToOracle;
execute by oracle (
begin
dbms_stats.gather_table_stats('user', 'mytable', degree => 15);
end;);

In this code, where/what is the output table I can find the table's information? 

 

Thanks!

2 REPLIES 2
ChrisNZ
Tourmaline | Level 20

1. I reckon this question would be best answered in an Oracle forum


2. My understanding is that the results of gather_table_stats are used by Oracle to optimise queries by using the information collected rather than for human consumption.

Tom
Super User Tom
Super User

That doesn't look like the type of command that would actually return anything, but perhaps you can try using the TABLE() function to convert what it does return into something that looks like a table you can query?

select * from connection to oracle 
(
select * from table(  dbms_stats.gather_table_stats('user', 'mytable', degree => 15)  )
);

sas-innovate-2026-white.png



April 27 – 30 | Gaylord Texan | Grapevine, Texas

Registration is open

Walk in ready to learn. Walk out ready to deliver. This is the data and AI conference you can't afford to miss.
Register now and lock in 2025 pricing—just $495!

Register now

How to Concatenate Values

Learn how use the CAT functions in SAS to join values from multiple variables into a single value.

Find more tutorials on the SAS Users YouTube channel.

SAS Training: Just a Click Away

 Ready to level-up your skills? Choose your own adventure.

Browse our catalog!

Discussion stats
  • 2 replies
  • 1428 views
  • 0 likes
  • 3 in conversation