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 🙂

hackathon24-white-horiz.png

2025 SAS Hackathon: There is still time!

Good news: We've extended SAS Hackathon registration until Sept. 12, so you still have time to be part of our biggest event yet – our five-year anniversary!

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
  • 1682 views
  • 1 like
  • 2 in conversation