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
It's finally time to hack! Remember to visit the SAS Hacker's Hub regularly for news and updates.
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.
Ready to level-up your skills? Choose your own adventure.