plming/DB(52)
-
Sybase - Transact-SQL functions
Adaptive Server Enterprise 12.5 이므로, 15.5 와 약간 차이가 있을 수 있지만... 기본 Sybase의 function들은 거의 다 있다. 다른 버전의 Reference는 아래 링크를 타면, 좌측 메뉴에서 고를 수 있다. http://infocenter.sybase.com/help/index.jsp?topic=/com.sybase.dc36271_36272_36273_36274_1250/html/refman/CHDFCGIF.htm Types of functions Table 2-1 lists the different types of Transact-SQL functions and describes the type of information each returns. Table 2..
2010.11.23 -
Sybase - Error 원인 & 처리방법
SQL 실행 시 Error (번호)라고만 나오면, 원인이 무엇인지 알 수가 없다. Error (414) The current query would generate a key size of 648 for a work table. This exceeds the maximum allowable limit of 600. 뭔가 힌트성으로라도 어디에서 뭔가 잘못되서 나왔다고라도 표시를 좀 해주면... 엄~~청난 삽질의 굴레에서 벗어날 수 있을테지만... 워낙에 어디에서도 찾기가 쉽지 않다... 하지만, 나름의 페이지로 정리는 되어있다. #1 http://www.ianywhere.com/developer/product_manuals/sqlanywhere/0901/en/html/dberen9/00000011.htm #..
2010.11.22 -
Sybase - This exceeds the maximum allowable limit of
Select SQL 실행 시 발생한다. Error (414) The current query would generate a key size of 648 for a work table. This exceeds the maximum allowable limit of 600. http://infocenter.sybase.com/help/index.jsp?topic=/com.sybase.help.ase_12.5.svrtsg/html/svrtsg/svrtsg192.htm Error 414 Severity 16 Message text The current query would generate a key size of %d for a work table. This exceeds the maximum allowable..
2010.11.22 -
GetDate - Sybase, MS SQL
http://sqldud.blogspot.com/search/label/GetDate DatePart - Get Part of the Date -- Selecting the Current Year/Get Current Year/Separate Year Part from Date Select DatePart(YY, GetDate()) as Current_Year Result = INT = [2010] -- Selecting the Current Quarter/Get Current Quarter/Separate Quarter Part from Date Select DatePart(QQ, GetDate()) as Current_Quarter Result = INT = [4] -- Selecting the Cu..
2010.10.13 -
Sybase 15.0.1 vs Oracle 10.2
http://psoug.org/reference/sybase.html Sybase 15.0.1 Oracle 10gR2 Verbiage Instance Database Instance Database Schema User User System & User Databases master model sybsyntax sybsystemdb sybsystemprocs tempdb no equivalent ... uses its log files Schemas SYS and SYSTEM schemas SYS and SYSTEM schemas SYS and SYSTEM schemas SYS and SYSTEM schemas SYS and SYSTEM schemas temporary tablespace undo (ro..
2010.10.13 -
Sybase SQL등 명령어
1. 데이타베이스 띄우기 1) 데이타베이스 프로세스 상황보기 $showserver 2) 띄우기 $cd $SYBASE/install/ $startserver -f RUN_POSCO 2. 데이타베이스 내리기 1) 들어가기 $ isql -Usa -P > shutdown 3. 환경 변경하기 1) 메모리 변경하기 > sp_configure 'total memory', 25600 (크기 계산 : 50 *512 => 1M(=512 page) > go Parameter Name Default Memory Used Config Value Run Value -------------- ------- ----------- ------------ --------- total memory 750 51200 25600 25600 ..
2010.08.26