BookmarkSubscribeRSS Feed
🔒 This topic is solved and locked. Need further help from the community? Please sign in and ask a new question.
stuart_snap
Fluorite | Level 6

Hi.

 

Is it possible to write to an Oracle table thats name is longer than 32 Char?  I am able to read it using SQL Passthrough as suggested in several other threads, but when I try to insert some rows, i get...

"ERROR 65-58: Name 'WP_MARKETINGPROMOTIONSELIGIBILITY_BKUP' is too long for a SAS name in this context."

 

I am using the code below.  Am I missing something, or is writing not possible?

 

data test;

input cardcode $ promoid took $ segmentatdrop $ presented $ presenteddate presentedby;

cards;

S123456 3000 N Fringe Y . 999

S123457 3000 N Fringe N . 999

S123458 3000 N Fringe N . 999

run;

 

proc sql;

connect to odbc as myconn (datasrc=Prod user=sas password="edited" readbuff=3000);

insert into WP_MarketingPromotionsEligibility_bkup (cardcode, promoid, took, segmentatdrop, presented, presenteddate, presentedby)

select * from test;

disconnect from myconn;

quit;

 

Thanks!

 

1 ACCEPTED SOLUTION

Accepted Solutions
SASKiwi
PROC Star

Your insert into is not in a PASSTHRU step:

 

proc sql;
connect to odbc as myconn (datasrc=Prod user=sas password="edited" readbuff=3000);
execute (
insert into WP_MarketingPromotionsEligibility_bkup (cardcode, promoid, took, segmentatdrop, presented, presenteddate, presentedby)) by myconn;
disconnect from myconn;
quit;

View solution in original post

2 REPLIES 2
SASKiwi
PROC Star

Your insert into is not in a PASSTHRU step:

 

proc sql;
connect to odbc as myconn (datasrc=Prod user=sas password="edited" readbuff=3000);
execute (
insert into WP_MarketingPromotionsEligibility_bkup (cardcode, promoid, took, segmentatdrop, presented, presenteddate, presentedby)) by myconn;
disconnect from myconn;
quit;
LinusH
Tourmaline | Level 20
Or create a view with a name with 32 or less chars.
Data never sleeps

hackathon24-white-horiz.png

The 2025 SAS Hackathon has begun!

It's finally time to hack! Remember to visit the SAS Hacker's Hub regularly for news and updates.

Latest Updates

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
  • 1379 views
  • 0 likes
  • 3 in conversation