Hi All,
I have a problem when i run a sas code it will delete the current table and insert into same table like in example below but the problem is its changing all the dates format to 1960-01-01 05:38:21.000
can anyone pls help
i have used below query
proc sql;
delete from sqldb.xy;
insert into sqldb.xy
select * from price.yz
;
quit;
By any chance is any of this data in another database such as Oracle, DB2 or SQL server?
There are a lot of systems out there that say something is a "date" but is actually a datetime. The specific value you show makes me beleive that you actually have a date, 08/01/2015, as a value being inserted into something that is expecting a datetime value.
yes you are rite but for first time its working fine and loading correct dates i mean
PROC SQL;
CREATE TABLE sqldb.xy AS
SELECT
FROM price.yz;
quit;
/*inorder to update table in sql */
proc sql;
delete from sqldb.xy;
insert into sqldb.xy
select * from price.yz
;
quit;
for the first time ia m using proc sql create table in sql but once the table is created in sql then when i run second time i am just deleteing table and inserting rows into same table but when i am doing secong procedure teh dtae format changes pls explain
Registration is open! SAS is returning to Vegas for an AI and analytics experience like no other! Whether you're an executive, manager, end user or SAS partner, SAS Innovate is designed for everyone on your team. Register for just $495 by 12/31/2023.
If you are interested in speaking, there is still time to submit a session idea. More details are posted on the website.
Learn the difference between classical and Bayesian statistical approaches and see a few PROC examples to perform Bayesian analysis in this video.
Find more tutorials on the SAS Users YouTube channel.