由买买提看人间百态

boards

本页内容为未名空间相应帖子的节选和存档,一周内的贴子最多显示50字,超过一周显示500字 访问原贴
Statistics版 - 还在为SAS的时间限制烦恼?
相关主题
一个SAS 问题,紧急!two SAS macro questions
how to use time format in SASSAS date-time parsing
【包子】SAS 日期和时间问题问一个SAS里日期的问题,where is error?
平时都是在windows 下用SAS,和在UNIX 下用SAS差别大不大SAS: how to build a timer
SAS under UnixSAS date format 的问题
再求个 sas 的 quick answer请教一个SAS排序的问题
请问:为什么if then 在do loop 中就不起作用了呢?有大侠知道怎么format下面这个query的时间么 (转载)
请教SAS的问题,时间变量读取,包子答谢大牛们, SAS code 求助
相关话题的讨论汇总
话题: date话题: sas话题: ping话题: datetime话题: 10
进入Statistics版参与讨论
1 (共1页)
o****o
发帖数: 8077
1
windows下用管理员执行这个batch文件,全部搞定,还破解个啥啊。
2012/05/10换成合适的日期就行
date /t > c:\date.txt
date 2012/05/10
start sas.exe
ping 127.0.0.1 -n 10 >nul
more c:\date.txt|date
t*******t
发帖数: 633
2
哈哈,太牛了:)
再也不用调时间,开SAS,调回时间了。。

【在 o****o 的大作中提到】
: windows下用管理员执行这个batch文件,全部搞定,还破解个啥啊。
: 2012/05/10换成合适的日期就行
: date /t > c:\date.txt
: date 2012/05/10
: start sas.exe
: ping 127.0.0.1 -n 10 >nul
: more c:\date.txt|date

h**********1
发帖数: 155
3
我直接
date 01-10-12
start sas.exe
date 01-10-13
也可以
虽然还是要调时间,但是方便一些。多谢!
t********m
发帖数: 939
4
牛,mark一下。
B*********8
发帖数: 207
5
有行家解释下这两行是在做什么么?
ping 127.0.0.1 -n 10 >nul
more c:\date.txt|date
谢谢。

【在 o****o 的大作中提到】
: windows下用管理员执行这个batch文件,全部搞定,还破解个啥啊。
: 2012/05/10换成合适的日期就行
: date /t > c:\date.txt
: date 2012/05/10
: start sas.exe
: ping 127.0.0.1 -n 10 >nul
: more c:\date.txt|date

o****o
发帖数: 8077
6
this was bad code at first glance because it writes to disk, which is
unnecessary,
ping is used to wait 10 seconds after SAS starts. This is important because
SAS check datetime at the very beginning, you have to wait a while before
change datetime back to normal. this is like using SLEEP function in UNIX.
more statement pipes the current date time you wrote to disk back to the
DATE function to change the datetime back to normal.
but use these statement instead
SET d1=%DATE%
DATE 2010/01/01
.....
PING ....
DATE %d1%

【在 B*********8 的大作中提到】
: 有行家解释下这两行是在做什么么?
: ping 127.0.0.1 -n 10 >nul
: more c:\date.txt|date
: 谢谢。

j*****l
发帖数: 73
7
楼主能不能详细说一下使用步骤,本人小白,有包子相送。谢谢
F****3
发帖数: 1504
8
我也很白,请问具体怎么实现呢?我的SAS是学校装的,但是还是想知道怎么破解。。
1 (共1页)
进入Statistics版参与讨论
相关主题
大牛们, SAS code 求助SAS under Unix
求教linux bash 命令象R那样处理数据再求个 sas 的 quick answer
SAS问题求助请问:为什么if then 在do loop 中就不起作用了呢?
[合集] SAS 程序 Editor 窗口显示 在 running,实际上是死了,请教请教SAS的问题,时间变量读取,包子答谢
一个SAS 问题,紧急!two SAS macro questions
how to use time format in SASSAS date-time parsing
【包子】SAS 日期和时间问题问一个SAS里日期的问题,where is error?
平时都是在windows 下用SAS,和在UNIX 下用SAS差别大不大SAS: how to build a timer
相关话题的讨论汇总
话题: date话题: sas话题: ping话题: datetime话题: 10