DROP한 테이블 복구하기 (RECYCLEBIN)
2023-06-21
RECYCLEBIN은 우리 PC의 휴지통️ 같은 기능으로, 삭제된 데이터를 임시 보관하고 있는 곳입니다 FLASHBACK 기능 중 하나로 UNDO 영역을 사용하고 있습니다 DROP, TRUNCATE, DELETE의 차이가 궁금하다면?...
‘GlobalShaderCache-PC3D_SM5.bin’ is missing...
2015-07-30
“The global shader cache file ‘GlobalShaderCache-PC3D_SM5.bin’ is missing. You’re running a version of the application built to load COOKED content only, however no COOKED content was found....
hex2bin, bin2hex : Hexa string 변환 함수
2024-09-16
byte = -1; } } pc++; } return i; } int bin2hex(char *buf, char *textbuf, int len, int type) { char hexs[]="0123456789ABCDEF"; int i; int j=0; for(i=0;i<len;i++) { textbuf[j++] = hexs[ (buf[i]...