블로그
-
[Oracle] 오라클 사용자 계정 잠금 해제
Lock 유저를 확인 SELECT username, account_status, lock_date FROM dba_users; (유저 계정별 상태값이 나옴, 이상없는 유저의 상태값을 OPEN 해제하기 ALTER USER scott ACCOUNT UNLOCK; (반대로 alter user scott account lock; 을 입력하면 잠궈버립니다. scott계정의 위치에
blog.naver.com · 2017.08.29
-
ARCHICAD 21- GRAPHISOFT
Our next-gen Stair Tool provides a creative, productive and enjoyable user experience – the reason why We also further refined ARCHICAD’s best-in-class OPEN BIM workflows in .......
blog.naver.com · 2017.05.04
-
[영진전문대학 컴퓨터정보계열] 자료구조 실습
. * To change this template file, choose Tools | Templates * and open the template in the editor. */ /** * * @author user */ public class MyQue extends LinkedList { public MyQue(Card root) { super(root)
blog.naver.com · 2016.11.28
-
[영진전문대학 컴퓨터정보계열] 자료구조 실습
. * To change this template file, choose Tools | Templates * and open the template in the editor. */ /** * * @author user */ public class MyStack extends LinkedList { private static MyStack obj = null;
blog.naver.com · 2016.11.28
-
[영진전문대학 컴퓨터정보계열] 자료구조 실습
. * To change this template file, choose Tools | Templates * and open the template in the editor. */ /** * * @author user */ import javax.swing.*; public class CardBiz extends JFrame { /** * Creates new
blog.naver.com · 2016.11.28
-
[영진전문대학 컴퓨터정보계열] 자료구조 실습
. * To change this template file, choose Tools | Templates * and open the template in the editor. */ /** * * @author user */ public class MyTreeCard extends javax.swing.JFrame { MyBinaryTree biTree=null
blog.naver.com · 2016.11.28
-
[영진전문대학 컴퓨터정보계열] 자료구조 실습
. * To change this template file, choose Tools | Templates * and open the template in the editor. */ /** * * @author user */ public class Card { private String name="무명씨"; private String tel=""; public
blog.naver.com · 2016.11.28
-
[영진전문대학 컴퓨터정보계열] 자료구조 실습
. * To change this template file, choose Tools | Templates * and open the template in the editor. */ /** * * @author user */ public class LinkedList { private Card root; private static LinkedList obj=null
blog.naver.com · 2016.11.28
-
[영진전문대학 컴퓨터정보계열] 자료구조 실습
. * To change this template file, choose Tools | Templates * and open the template in the editor. */ /** * * @author user */ public class MyBinaryTree { private Card roof=null; private Vector orderedObjVec
blog.naver.com · 2016.11.28
-
[영진전문대학 컴퓨터정보계열] 자료구조 실습
. * To change this template file, choose Tools | Templates * and open the template in the editor. */ /** * * @author user */ public class Card { private String name; private Card left; private Card right
blog.naver.com · 2016.11.28