05-29-2020
olabuh
Calcite | Level 5
Member since
10-18-2018
- 7 Posts
- 1 Likes Given
- 0 Solutions
- 0 Likes Received
-
Latest posts by olabuh
Subject Views Posted 678 05-29-2020 07:08 PM 932 12-05-2019 01:08 AM 1331 06-02-2019 01:45 PM 1357 06-02-2019 12:05 PM 4441 05-12-2019 01:17 AM 4450 05-12-2019 12:53 AM 838 10-18-2018 10:03 AM -
Activity Feed for olabuh
- Posted Read Access violation in proc survey means on SAS Programming. 05-29-2020 07:08 PM
- Posted Sample size change in Survey data on SAS Procedures. 12-05-2019 01:08 AM
- Posted Re: Error code when trying to merge years on SAS Programming. 06-02-2019 01:45 PM
- Posted Error code when trying to merge years on SAS Programming. 06-02-2019 12:05 PM
- Posted Re: SAS freezing when trying to run data step on a large dataset on SAS Programming. 05-12-2019 01:17 AM
- Liked Re: SAS freezing when trying to run data step on a large dataset for Tom. 05-12-2019 01:16 AM
- Posted SAS freezing when trying to run data step on a large dataset on SAS Programming. 05-12-2019 12:53 AM
- Posted risk scoring system on SAS Programming. 10-18-2018 10:03 AM
-
Posts I Liked
Subject Likes Author Latest Post 1
05-29-2020
07:08 PM
Getting this error while running proc surveymeans proc surveymeans data=ms;/*mean LOS*/ 2336 weight discwt; 2337 cluster hospid; 2338 strata nis_stratum; 2339 domain msc; 2340 var LOS; ERROR: An exception has been encountered. Please contact technical support and provide them with the following traceback information: The SAS task name is [SURVEYMEANS] ERROR: Read Access Violation SURVEYMEANS Exception occurred at (0688A65F) Task Traceback Address Frame (DBGHELP API Version 4.0 rev 5) 000000000688A65F 000000004EB55180 sasods:tkvercn1+0x12961F 000000004827B91E 000000004EB55188 sasstgr:tkvercn1+0x5A8DE 00000000482AE80A 000000004EB55B10 sasstgr:tkvercn1+0x8D7CA 0000000048298E8F 000000004EB55E00 sasstgr:tkvercn1+0x77E4F 0000000008BBFACA 000000004EB55E08 sasoda:tkvercn1+0x7EA8A 0000000008B5FDC8 000000004EB55F40 sasoda:tkvercn1+0x1ED88 0000000008BBFACA 000000004EB55F80 sasoda:tkvercn1+0x7EA8A 0000000008B424F8 000000004EB56590 sasoda:tkvercn1+0x14B8 0000000047EE0DAA 000000004EB56598 sasmrk:tkvercn1+0x10FD6A 0000000047E649E0 000000004EB56B40 sasmrk:tkvercn1+0x939A0 0000000028C466BA 000000004EB56B48 sastags:tkvercn1+0x5567A 0000000028C1FEF5 000000004EB57120 sastags:tkvercn1+0x2EEB5 000000002600ADFA 000000004EB57128 sasxml:tkvercn1+0x49DBA 0000000025FC25DA 000000004EB57210 sasxml:tkvercn1+0x159A 0000000006973BEA 000000004EB57250 sasods:tkvercn1+0x212BAA 0000000006823F6A 000000004EB575C0 sasods:tkvercn1+0xC2F2A 00000000067BEDA3 000000004EB57CA0 sasods:tkvercn1+0x5DD63 0000000006973BEA 000000004EB57CE0 sasods:tkvercn1+0x212BAA 00000000067D4805 000000004EB5BD10 sasods:tkvercn1+0x737C5 0000000006973BEA 000000004EB5BD50 sasods:tkvercn1+0x212BAA 00000000067C4B72 000000004EB5DFE0 sasods:tkvercn1+0x63B32 000000004F1EF12A 000000004EB5DFE8 sasqsmea:tkvercn1+0xCE0EA 000000004F19225F 000000004EB5EC10 sasqsmea:tkvercn1+0x7121F 000000004F1257EC 000000004EB5F2D0 sasqsmea:tkvercn1+0x47AC 000000004F121627 000000004EB5FBC0 sasqsmea:tkvercn1+0x5E7 00000000033289DB 000000004EB5FBC8 sashost:Main+0x10EBB 000000000332E61D 000000004EB5FF20 sashost:Main+0x16AFD 00007FF8D53A7BD4 000000004EB5FF28 KERNEL32:BaseThreadInitThunk+0x14 00007FF8D682CED1 000000004EB5FF58 ntdll:RtlUserThreadStart+0x21 NOTE: The SAS System stopped processing this step because of errors. NOTE: PROCEDURE SURVEYMEANS used (Total process time): real time 24:43.38 cpu time 1:52.67
... View more
12-05-2019
01:08 AM
I am analyzing a survey data with a raw sample size of about 2.7 million, when I run the proc survey procedures, the sample size comes down to about 2 million and I am sure this is not explained by the missing data because I ran the proc freq and the missing data were very small and the sample size with the normal proc procedures was 2.7 million. Does anyone know why? Thanks.
... View more
06-02-2019
01:45 PM
data combined; 1844 set new10 new11 new12 new13 new14; 1845 run; WARNING: Multiple lengths were specified for the variable NIS_STRATUM by input data set(s). This can cause truncation of data. ERROR: Windows error code: 23 in hc_disk_normal_read for C:\Users\Olajide\AppData\Local\Temp\SAS Temporary Files\_TD65924_WINDOWS-329L0KE_\new11.sas7bdat, Data error (cyclic redundancy check). ERROR: File WORK.NEW11.DATA is damaged. I/O processing did not complete. NOTE: The DATA step has been abnormally terminated. NOTE: The SAS System stopped processing this step because of errors. NOTE: There were 7800441 observations read from the data set WORK.NEW10. NOTE: There were 1959251 observations read from the data set WORK.NEW11. WARNING: The data set WORK.COMBINED may be incomplete. When this step was stopped there were 9759692 observations and 233 variables. WARNING: Data set WORK.COMBINED was not replaced because this step was stopped.
... View more
06-02-2019
12:05 PM
I got this error code when I tried merging data in sas window error code :23 in hc_disc_normal. Any solution ?
... View more
05-12-2019
01:17 AM
I am sure I put in the correct code. The process started running but never completed the process for over an hour . The previous code I ran took 6 minutes .
... View more
05-12-2019
12:53 AM
I tried running proc freq on a dataset with 15000000 observations and the program froze. I had to restart it and this happened many times. My RAM is 8gb, do I need to upgrade the ram to run large dataset ?
... View more
10-18-2018
10:03 AM
Any one has a link on how to develop a risk scoring system and validation of the scoring system. A detalied video will go a long way.
... View more