oracle의 경우 대부분의 table을 shell로 만들어서 analyze하도록 했는데요..
sybase의 경우도 모든 table을 update statistics 명령어를 수행시키는 shell을 만들어 정기적으로 수행시키나요?/
샘플도 가능하시다면..부탁드립니다.
shell script 예 isql -Uxxx -Pxxxx -Sxxxx << _EOF use db_name go update index statistics tab1 go update index statistics tab2 go ........................... update index statistics tabn go _EOF 하시면 되고.... Server를 재시작치 않고 계속 사용하시려면 sp_recompile tab_name을 하셔야 stored procedure에 적용됩니다. 안하시면 stored procedure에는 영향이 없습니다.