Oracle Remote Export And Import

팁: 원격에서 접속하려면 @TNS명을 지정하면 된다^^! exp userid=계정명/패스워드@TNS명 file=백업된파일 저장위치 log=백업과정의 로그 정보 저장 위치 export =>사용형식 exp userid/passwd tables=table_name file=/tmp/file.dmp =>Export Paramger    - userid : EXPORT를 실행시키고 있는 username/password명.    - buffer : 데이터 행들을 가져오는데 사용되는 버퍼의 크기.    - file : 생성되는 EXPORT덤프 파일명.    - filesize : EXPORT덤프 파일의 최대 크기    - grants : 데이터베이스 객체에 대한 권한 정보의 EXPORT여부 (Y/N 플래그)    - indexes : 테이블에 대한 INDEXES의 EXPORT여부 (Y/N 플래그)    - rows : 행들에 대한 EXPORT여부. (Y/N 플래그)             만약 “no”이면 데이터는 EXPORT되지않고 테이블의 정의만 EXPORT    - constraints : 테이블에 대한 제약조건 정보의 EXPORT여부 (Y/N 플래그)    - compress : IMPORT에 대비하여 테이블의 데이터를 한 extent로 압축 할것인가의 여부             (Y/N 플래그)    - full : 전체 데이터베이스를 EXPORT할것인가의 여부 (Full Level Export) (Y/N 플래그)    - owner : EXPORT될 데이터베이스의 소유자명 (User Level Export)[owner=...

경 고: [SetPropertiesRule]{Server/Service/Engine/Host/Context} Setting property 'source' to 'org.eclipse.jst.jee.server:Example' did not find a matching property

Tomcat 경고 Tomcat Server  더블클릭  Server Options -> check -> publish module contexts to separate XML files Tomcat Shutdown 상태에서 체크하고 나올때 Update Yes 를 선택하고 나오면 된다 경 고: [SetPropertiesRule]{Server/Service/Engine/Host/Context} Setting property 'source' to 'org.eclipse.jst.jee.server:Example' did not find a matching property

jQuery AJAX Methods

Method Description $.ajax() Performs an AJAX request ajaxComplete() Specifies a function to run when the AJAX request completes ajaxError() Specifies a function to run when the AJAX request completes with an error ajaxSend() Specifies a function to run before the AJAX request is sent $.ajaxSetup() Sets the default values for future AJAX requests ajaxStart() Specifies a function to run when the first AJAX request begins ajaxStop() Specifies a function to run when all AJAX requests have completed ajaxSuccess() Specifies a function to run an AJAX request completes successfully $.get() Loads data from a server using an AJAX HTTP GET request $.getJSON() Loads JSON-encoded data from a server using a HTTP GET request $.getScript() Loads (and executes) a JavaScript from the a server using an AJAX HTTP GET request load() Loads data from a server and puts the returned HTML into the selected element $.param() Creates a serialized representation of an array or object (can be used as...

jQuery AJAX Methods

Method Description $.ajax() Performs an AJAX request ajaxComplete() Specifies a function to run when the AJAX request completes ajaxError() Specifies a function to run when the AJAX request completes with an error ajaxSend() Specifies a function to run before the AJAX request is sent $.ajaxSetup() Sets the default values for future AJAX requests ajaxStart() Specifies a function to run when the first AJAX request begins ajaxStop() Specifies a function to run when all AJAX requests have completed ajaxSuccess() Specifies a function to run an AJAX request completes successfully $.get() Loads data from a server using an AJAX HTTP GET request $.getJSON() Loads JSON-encoded data from a server using a HTTP GET request $.getScript() Loads (and executes) a JavaScript from the a server using an AJAX HTTP GET request load() Loads data from a server and puts the returned HTML into the selected element $.param() Creates a serialized representation of an array or object (can be used as...

jQuery Miscellaneous Methods

Method Description data() Attaches data to, or gets data from, selected elements each() Run a function for each element matched by the jQuery selector get() Get the DOM elements matched by the selector index() Search for a given element from among the matched elements $.noConflict() Release jQuery's control of the $ variable $.param() Creates a serialized representation of an array or object (can be used as URL query string for AJAX requests) removeData() Removes a previously-stored piece of data size() Return the number of DOM elements matched by the jQuery selector toArray() Retrieve all the DOM elements contained in the jQuery set, as an array

jQuery Selectors Sample

Selector Example Selects * $("*") All elements # id $("#lastname") The element with id=lastname . class $(".intro") All elements with class="intro" element $("p") All p elements . class . class $(".intro.demo") All elements with the classes "intro" and "demo" :first $("p:first") The first p element :last $("p:last") The last p element :even $("tr:even") All even tr elements :odd $("tr:odd") All odd tr elements :eq( index ) $("ul li:eq(3)") The fourth element in a list (index starts at 0) :gt( no ) $("ul li:gt(3)") List elements with an index greater than 3 :lt( no ) $("ul li:lt(3)") List elements with an index less than 3 :not( selector ) $("input:not(:empty)") All input elements that are not empty :header $(":header") All header elements h1, h2 ... :animated $(":animated") All ani...

jQuery HTML Methods

Method Description addClass() Adds one or more classes (for CSS) to selected elements after() Inserts content after selected elements append() Inserts content at the end of (but still inside) selected elements appendTo() Inserts content at the end of (but still inside) selected elements attr() Sets or returns an attribute and value of selected elements before() Inserts content before selected elements clone() Makes a copy of selected elements detach() Removes (but keeps a copy of) selected elements empty() Removes all child elements and content from selected elements hasClass() Checks if any of the selected elements have a specified class (for CSS) html() Sets or returns the content of selected elements insertAfter() Inserts HTML markup or elements after selected elements insertBefore() Inserts HTML markup or elements before selected elements prepend() Inserts content at the beginning of (but still inside) selected elements prependTo() Inserts content at the beginning o...