BookmarkSubscribeRSS Feed
chennupriya
Quartz | Level 8

Hi ,

I am running below program and I am getting error when I run with table b

 

 

proc sql;

  CONNECT TO ODBC AS tg (DSN = "Test" UID=test2 PWD=&xy);

  CREATE TABLE testing AS

  SELECT * FROM CONNECTION TO tg (

    SELECT a.apple as apple

                b.sgsystem as id,

count(*) as hh

                FROM   zx as a

                           Gc as b                      

                WHERE  a.pol = b.pol

                AND  a.key = b.key

                GROUP BY  apple,id );

 

  DISCONNECT FROM tg;

QUIT;

 

ERROR: CLI open cursor error: [Tandem][ODBC Driver][NonStop SQL] NonStop SQL message (8013) :

Internal error: Unable to increase the size of the SQL executor's extended segment. The

current segment size is 133693440 bytes.illegal <count> specified

 

 

Can anyone please help

 

Thank you so much

2 REPLIES 2
Reeza
Super User
I would interpret that error to be that the data you're pulling is larger than the space they've allotted you on the server. Can you check with your IT teams if they have size limits on your account?
chennupriya
Quartz | Level 8
Thank you for the help . I can check and see 🙂

SAS Innovate 2025: Call for Content

Are you ready for the spotlight? We're accepting content ideas for SAS Innovate 2025 to be held May 6-9 in Orlando, FL. The call is open until September 25. Read more here about why you should contribute and what is in it for you!

Submit your idea!

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.

Click image to register for webinarClick image to register for webinar

Classroom Training Available!

Select SAS Training centers are offering in-person courses. View upcoming courses for:

View all other training opportunities.

Discussion stats
  • 2 replies
  • 1353 views
  • 1 like
  • 2 in conversation