BookmarkSubscribeRSS Feed
tomcmacdonald
Quartz | Level 8

 

PROC DS2 ;
	package regexp / overwrite=yes;
		method match( varchar(1024) pattern, varchar(1024) string ) returns double;
			return prxmatch(pattern, string);
		end;
	run;
QUIT;


PROC FEDSQL;
	CREATE TABLE example (
		id VARCHAR(11)
	);
QUIT;

PROC FEDSQL;
	INSERT INTO example
	SELECT
		CASE LENGTH(id)
			WHEN 11 THEN SUBSTRING(id FROM 1 FOR 6) || SUBSTRING(id FROM 8 FOR 4)
			WHEN 12 THEN SUBSTRING(id FROM 1 FOR 6) || SUBSTRING(id FROM 8 FOR 5)
		END AS id
	FROM MYDATABASE.MYSCHEMA.MYTABLE
	WHERE regexp.match('/[0-9]+/', id) = 1 AND regexp.match('/[A-Z]+/', id) = 0;
QUIT;

 

Throws this error:

 

ERROR: Access Violation occurred during PREPARE!

What do I have to do to avoid this error? 

 

1 REPLY 1
SASKiwi
PROC Star

I note you've posted several times for the same subject. You would be better off opening a track to SAS Technical Support and report all of your DS2 access violation problems to them. They are in the best position to help.

SAS Innovate 2025: Save the Date

 SAS Innovate 2025 is scheduled for May 6-9 in Orlando, FL. Sign up to be first to learn about the agenda and registration!

Save the date!

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