<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0">
  <channel>
    <title>IT당~얼쑤가 아니네</title>
    <link>https://algina.tistory.com/</link>
    <description></description>
    <language>ko</language>
    <pubDate>Tue, 7 Jul 2026 05:14:10 +0900</pubDate>
    <generator>TISTORY</generator>
    <ttl>100</ttl>
    <managingEditor>자게남</managingEditor>
    <item>
      <title>바인드 변수값 테이블</title>
      <link>https://algina.tistory.com/197</link>
      <description>오라클에서 바인드된 변수값을 확인하기위해서는 Trace를 하면되는데 여건이 안되면 아래 테이블 또는 뷰로 검색한다제약사항 : 10G 이상이하버전은 Trace를 사용하세요SYS.V_$SQL_BIND_CAPTURE DBA_HIST_SQLBIND관련뷰SYS.V_$SQLSYS.V_$SQL_PLANSYS.V_$SQLAREASYS.V_$SQL_BIND_DATASYS.V_$SQL_BIND_METADATA</description>
      <category>-=-= 컴퓨터 =-=-/Database</category>
      <author>자게남</author>
      <guid isPermaLink="true">https://algina.tistory.com/197</guid>
      <comments>https://algina.tistory.com/197#entry197comment</comments>
      <pubDate>Tue, 30 Dec 2014 13:50:21 +0900</pubDate>
    </item>
    <item>
      <title>[Java 7] try-with-resources</title>
      <link>https://algina.tistory.com/195</link>
      <description>자바 7에서는 try catch문에서 resources 를 관리할수있다resources 를 관리하는 대표적인것은 stream이며 자동으로 스트림을 종료하는 메서드가 호출된다autocloseable을 implement 하여 사용자가 직접 구현도 가능하다 try catch resource 관리 예try (Outputstream os = Files.newOutputStream (byte형)){   os.write (Data);   //os.close를 자동으..</description>
      <category>-=-= 컴퓨터 =-=-/JAVA</category>
      <category>try catch auto closeable</category>
      <category>try catch resource</category>
      <author>자게남</author>
      <guid isPermaLink="true">https://algina.tistory.com/195</guid>
      <comments>https://algina.tistory.com/195#entry195comment</comments>
      <pubDate>Mon, 22 Dec 2014 10:55:27 +0900</pubDate>
    </item>
    <item>
      <title>[오라클]  CREATE TABLE AS SELECT</title>
      <link>https://algina.tistory.com/194</link>
      <description>CREATE TABLE 테이블명 (컬럼명1,컬럼명2) ASSELECT 컬럼명1,컬럼명2FROM 테이블명WHERE 조건조회한 후 인서트시 컬럼명을 변경할때 사용됨</description>
      <category>-=-= 컴퓨터 =-=-/Database</category>
      <author>자게남</author>
      <guid isPermaLink="true">https://algina.tistory.com/194</guid>
      <comments>https://algina.tistory.com/194#entry194comment</comments>
      <pubDate>Wed, 17 Dec 2014 15:56:12 +0900</pubDate>
    </item>
    <item>
      <title>[이클립스] RSE_UI_INIT</title>
      <link>https://algina.tistory.com/193</link>
      <description>출처 : http://blog.naver.com/nosleep/220083469081http://stackoverflow.com/questions/1631817/annoying-remote-system-explorer-operation-causing-freeze-for-couple-of-seconds이클립스 최신 버전 사용중 프로세스&amp;nbsp;RSE_UI_INIT 가 계속 진행중일경우 설정Go on MAC:Eclipse -&amp;gt; Preferences ..</description>
      <category>-=-= 컴퓨터 =-=-/프로그래밍</category>
      <author>자게남</author>
      <guid isPermaLink="true">https://algina.tistory.com/193</guid>
      <comments>https://algina.tistory.com/193#entry193comment</comments>
      <pubDate>Thu, 13 Nov 2014 17:35:02 +0900</pubDate>
    </item>
    <item>
      <title>오라클 일별 통계</title>
      <link>https://algina.tistory.com/192</link>
      <description>오라클 SH 스키마 필요
&amp;nbsp;
SELECT&amp;nbsp;&amp;nbsp;&amp;nbsp; CUST_ID, YYYYMM, SUM(&quot;01&quot;) AS &quot;1일&quot;, SUM(&quot;02&quot;) AS &quot;2일&quot;, SUM(&quot;03&quot;) AS &quot;3일&quot;, SUM(&quot;04&quot;) AS &quot;4일&quot;, SUM(&quot;05&quot;) AS &quot;5일&quot;, SUM(&quot;06&quot;) AS &quot;6일&quot;,&amp;nbsp;&amp;nbsp;&amp;nbsp; SUM(&quot;07&quot;) AS &quot;7일&quot;, SUM(&quot;08&quot;) AS &quot;8일&quot;, SUM(&quot;09&quot;) AS &quot;9일&quot;, SUM..</description>
      <category>-=-= 컴퓨터 =-=-/Database</category>
      <author>자게남</author>
      <guid isPermaLink="true">https://algina.tistory.com/192</guid>
      <comments>https://algina.tistory.com/192#entry192comment</comments>
      <pubDate>Wed, 29 Oct 2014 10:55:13 +0900</pubDate>
    </item>
    <item>
      <title>[오라클] 월별 통계</title>
      <link>https://algina.tistory.com/186</link>
      <description>SH 스키마 필요 // 년도별 월별 통계 //2014.10.29 수정
&amp;nbsp;
SELECT&amp;nbsp;&amp;nbsp;&amp;nbsp; CUST_ID, YYYY, SUM(&quot;01&quot;) AS &quot;1월&quot;, SUM(&quot;02&quot;) AS &quot;2월&quot;, SUM(&quot;03&quot;) AS &quot;3월&quot;, SUM(&quot;04&quot;) AS &quot;4월&quot;, SUM(&quot;05&quot;) AS &quot;5월&quot;, SUM(&quot;06&quot;) AS &quot;6월&quot;,&amp;nbsp;&amp;nbsp;&amp;nbsp; SUM(&quot;07&quot;) AS &quot;7월&quot;, SUM(&quot;08&quot;) AS &quot;8월&quot;,..</description>
      <category>-=-= 컴퓨터 =-=-/Database</category>
      <author>자게남</author>
      <guid isPermaLink="true">https://algina.tistory.com/186</guid>
      <comments>https://algina.tistory.com/186#entry186comment</comments>
      <pubDate>Sat, 1 Mar 2014 15:48:45 +0900</pubDate>
    </item>
    <item>
      <title>오라클 상태 조회</title>
      <link>https://algina.tistory.com/185</link>
      <description>1. 세션별 CPU Time, Memory 사용량&amp;nbsp;select s.sid, s.serial#, p.spid as &quot;os pid&quot;, s.username, s.module, s.sql_id, event, seconds_in_wait,st.value/100 as &quot;cpu sec&quot;,round(pga_used_mem/1024/1024) &quot;pga_tot(mb)&quot;,round(pga_used_mem/1024/1024) &quot;pga_per_sess(mb)&quot;from..</description>
      <category>-=-= 컴퓨터 =-=-/Database</category>
      <author>자게남</author>
      <guid isPermaLink="true">https://algina.tistory.com/185</guid>
      <comments>https://algina.tistory.com/185#entry185comment</comments>
      <pubDate>Sat, 1 Mar 2014 13:48:26 +0900</pubDate>
    </item>
    <item>
      <title>[오라클 / PL-SQL] 오라클 예외처리 및 기본 예제</title>
      <link>https://algina.tistory.com/184</link>
      <description>CREATE OR REPLACE PROCEDURE SP_USER_CONTROL(&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; SEL_MODE IN VARCHAR2,&amp;nbsp;&amp;nbsp;&amp;nbsp; P_X_ID IN X_TEMP_TABLE.X_ID%TYPE,&amp;nbsp;&amp;nbsp;&amp;nbsp; P_X_PW IN X_TEMP_TABLE.X_PW%TYPE,&amp;nbsp;&amp;nbsp;&amp;nbsp; ERROR_CODE OUT VARCHAR2, --에러..</description>
      <category>-=-= 컴퓨터 =-=-/Database</category>
      <author>자게남</author>
      <guid isPermaLink="true">https://algina.tistory.com/184</guid>
      <comments>https://algina.tistory.com/184#entry184comment</comments>
      <pubDate>Mon, 17 Feb 2014 09:35:01 +0900</pubDate>
    </item>
    <item>
      <title>클라이언트 Mac Address 가져오기</title>
      <link>https://algina.tistory.com/183</link>
      <description>클라이언트에서 액티브x를 &amp;nbsp;안쓰고 맥주소 가져오는 방법 / 애플릿http://techdetails.agwego.com/2008/02/11/37/</description>
      <category>-=-= 컴퓨터 =-=-/웹프로그래밍</category>
      <author>자게남</author>
      <guid isPermaLink="true">https://algina.tistory.com/183</guid>
      <comments>https://algina.tistory.com/183#entry183comment</comments>
      <pubDate>Fri, 7 Feb 2014 19:37:40 +0900</pubDate>
    </item>
    <item>
      <title>/usr/libexec/gconf-sanity-check-2 256 오류</title>
      <link>https://algina.tistory.com/173</link>
      <description>로그인을 하려고 하는데 /usr/libexec/gconf-sanity-check-2 256 오류&amp;nbsp;오류가 뜰경우
&amp;nbsp;
ssh로 접속해서 /tmp 폴더의 권한을 변경해주면된다.
&amp;nbsp;
chmod 755 /tmp
&amp;nbsp;
참조링크 : http://jejuchild.tistory.com/235</description>
      <category>-=-= 컴퓨터 =-=-/리눅스 &amp;amp; 유닉스</category>
      <author>자게남</author>
      <guid isPermaLink="true">https://algina.tistory.com/173</guid>
      <comments>https://algina.tistory.com/173#entry173comment</comments>
      <pubDate>Sun, 8 Dec 2013 01:50:27 +0900</pubDate>
    </item>
  </channel>
</rss>