<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0">
  <channel>
    <title>Develop의 Tistory</title>
    <link>https://userpark.tistory.com/</link>
    <description>프로그래밍 및 개인 자료 블로그</description>
    <language>ko</language>
    <pubDate>Fri, 7 Aug 2026 16:45:02 +0900</pubDate>
    <generator>TISTORY</generator>
    <ttl>100</ttl>
    <managingEditor>소소한 늙은 개발자의 메모장</managingEditor>
    <image>
      <title>Develop의 Tistory</title>
      <url>https://tistory1.daumcdn.net/tistory/223010/attach/47e731c357fc44dbb011b06f6ea91330</url>
      <link>https://userpark.tistory.com</link>
    </image>
    <item>
      <title>Oracle) 오라클 Full 백업 후 스키마별 복원</title>
      <link>https://userpark.tistory.com/167</link>
      <description>오라클 Full 백업 후 스키마별 복원

Export : 데이터베이스 전체(FULL)로 백업
Import : 필요한 스키마(SCHEMA)만 복원

전체 FULL Export
expdp system/password \
    full=y \
    directory=DATA_PUMP_DIR \
    dumpfile=full_20260804.dmp \
    logfile=full_20260804.log

or
expdp &quot;'/ as sysdba'&quot; \
..</description>
      <category>DBMS/Oracle</category>
      <category>DATAPUMP</category>
      <category>dump</category>
      <category>exp</category>
      <category>Export</category>
      <category>imp</category>
      <category>Import</category>
      <category>oracle</category>
      <category>schema</category>
      <category>스키마</category>
      <category>오라클</category>
      <author>소소한 늙은 개발자의 메모장</author>
      <guid isPermaLink="true">https://userpark.tistory.com/167</guid>
      <comments>https://userpark.tistory.com/167#entry167comment</comments>
      <pubDate>Tue, 4 Aug 2026 13:26:56 +0900</pubDate>
    </item>
    <item>
      <title>Windows／bat) 특정 폴더 이하 용량을 빠르게 확인 하는 방법 (w/ robocopy)</title>
      <link>https://userpark.tistory.com/166</link>
      <description>특정 폴더 이하 용량을 빠르게 확인 하는 방법

탐색기를 통하여 용량 확인하는것이 상대적으로 느려서 찾게 된 방법

robocopy 시뮬레이션

robocopy : 대용량&amp;middot;다수 파일에서 실무적으로 빠른 편


실제로 복사하지 않고 파일 수와 용량만 집계

@echo off
rem bat파일
set _SOURCE_DIR_=D:\Backup
robocopy &quot;%_SOURCE_DIR_%&quot; &quot;%TEMP%\DummyFolder&quot; /L /E /BYTE..</description>
      <category>S.W./Microsoft</category>
      <category>BAT</category>
      <category>Microsoft</category>
      <category>robocopy</category>
      <category>Shell</category>
      <category>Tip&amp;amp;Tech</category>
      <category>Windows</category>
      <category>파일개수</category>
      <category>폴더용량</category>
      <author>소소한 늙은 개발자의 메모장</author>
      <guid isPermaLink="true">https://userpark.tistory.com/166</guid>
      <comments>https://userpark.tistory.com/166#entry166comment</comments>
      <pubDate>Tue, 4 Aug 2026 10:28:25 +0900</pubDate>
    </item>
    <item>
      <title>[Oracle] Data Pump Export(expdp) 실행 시 UDE-28000, ORA-28000(Account is Locked) 해결 방법</title>
      <link>https://userpark.tistory.com/165</link>
      <description>Oracle Data Pump를 활용한 Export시 UDE-28000, ORA-28000 계정 잠김된 경우 해결 법

expdp(Data Pump Export)로 접속하려는 Oracle 계정이 잠금(Account Locked) 상태일 때 발생하는 오류


명령 실행 (예시)
$ORACLE_HOME/bin/expdp system/{비밀번호} full=y ~~~`
오류 내용
Export: Release 11.2.0.4.0 - Production on We..</description>
      <category>DBMS/Oracle</category>
      <category>Acocount</category>
      <category>dump</category>
      <category>expdp</category>
      <category>Export</category>
      <category>Lock</category>
      <category>ORA-28000</category>
      <category>oracle</category>
      <category>UDE-28000</category>
      <category>계정잠금</category>
      <category>오라클</category>
      <author>소소한 늙은 개발자의 메모장</author>
      <guid isPermaLink="true">https://userpark.tistory.com/165</guid>
      <comments>https://userpark.tistory.com/165#entry165comment</comments>
      <pubDate>Wed, 29 Jul 2026 10:10:21 +0900</pubDate>
    </item>
    <item>
      <title>[Oracle] Oracle Directory 조회 / 생성 및 권한 부여</title>
      <link>https://userpark.tistory.com/163</link>
      <description>Oracle Directory
Oracle Directory 조회
SELECT DIRECTORY_NAME, DIRECTORY_PATH
FROM DBA_DIRECTORIES
ORDER BY DIRECTORY_NAME;
Oracle Directory 생성 및 권한 부여
CREATE OR REPLACE DIRECTORY DATA_PUMP_DIR AS &amp;#39;~~~~~~\dpdump&amp;#39;;

GRANT READ, WRITE ON DIRECTORY DATA..</description>
      <category>DBMS/Oracle</category>
      <category>Data Pump</category>
      <category>exp</category>
      <category>GRANT</category>
      <category>imp</category>
      <category>oracle</category>
      <category>Oracle Directory</category>
      <category>Pump</category>
      <category>디렉토리</category>
      <category>백업</category>
      <category>오라클</category>
      <author>소소한 늙은 개발자의 메모장</author>
      <guid isPermaLink="true">https://userpark.tistory.com/163</guid>
      <comments>https://userpark.tistory.com/163#entry163comment</comments>
      <pubDate>Wed, 15 Jul 2026 09:46:16 +0900</pubDate>
    </item>
    <item>
      <title>[Oracle] Export/Import - Data Pump 실행시 ORA-31634, ORA-31664 오류</title>
      <link>https://userpark.tistory.com/162</link>
      <description>[Oracle] Export/Import - Data Pump 실행시 ORA-31634, ORA-31664 오류

ORA-31634: job already exists&amp;rarr; 동일 작업명이 실행 중이거나 마스터 테이블이 남아 있을 때 발생 가능


ORA-31664: unable to construct unique job name when defaulte&amp;rarr; 기본 작업명 생성 시 유일한 이름을 만들지 못한 경우

남아있는 Data Pump 작..</description>
      <category>DBMS/Oracle</category>
      <category>Data Pump</category>
      <category>dump</category>
      <category>exp</category>
      <category>Export</category>
      <category>imp</category>
      <category>Jobs</category>
      <category>ORA-31634</category>
      <category>ORA-31664</category>
      <category>oracle</category>
      <category>오라클</category>
      <author>소소한 늙은 개발자의 메모장</author>
      <guid isPermaLink="true">https://userpark.tistory.com/162</guid>
      <comments>https://userpark.tistory.com/162#entry162comment</comments>
      <pubDate>Tue, 14 Jul 2026 22:14:06 +0900</pubDate>
    </item>
    <item>
      <title>[Linux] CentOS7 기준 크론(Cron) 설정</title>
      <link>https://userpark.tistory.com/161</link>
      <description>CentOS7 기준 크론(Cron) 설정
사용자 크론 확인
현재 로그인 사용자 크론 확인
crontab -l
특정 사용자의 크론 확인 (Root 권한)
crontab -u user -l

예시 : 매일 2시에 실행

0 2 * * * ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ 2&amp;gt;&amp;amp;1
사용자별 크론 확인
ls -la /var/spool/cron/

클론 서비스 동작 여부 확인
systemctl status cro..</description>
      <category>S.W./OS(Linux)</category>
      <category>backup</category>
      <category>CentOS</category>
      <category>cron</category>
      <category>crontab</category>
      <category>Linux</category>
      <category>Schedule</category>
      <category>백업</category>
      <category>스케줄</category>
      <category>시스템관리</category>
      <category>클론</category>
      <author>소소한 늙은 개발자의 메모장</author>
      <guid isPermaLink="true">https://userpark.tistory.com/161</guid>
      <comments>https://userpark.tistory.com/161#entry161comment</comments>
      <pubDate>Tue, 14 Jul 2026 17:54:54 +0900</pubDate>
    </item>
    <item>
      <title>[PHP] 워드&amp;middot;아웃룩&amp;middot;엑셀에서 복사한 유니코드 특수문자 처리 오류와 PHP 변환 함수</title>
      <link>https://userpark.tistory.com/160</link>
      <description>워드&amp;middot;아웃룩&amp;middot;엑셀에서 복사한 유니코드 특수문자 처리 오류와 PHP 변환 함수

&amp;nbsp;
최근 워드(Word), 아웃룩(Outlook), 엑셀(Excel) 등에서 작성된 문서를 시스템에 입력하거나 UTF-8로 저장한 후, 일부 특수문자 때문에 오류가 발생하는 현상을 확인하였다.
대표적으로 아래와 같은 문자가 문제가 되었다.
⓵ ⓶ ⓷
ⓐ ⓑ ⓒ
Ⓐ Ⓑ Ⓒ
㉮ ㉯ ㉰
㈎ ㈏ ㈐
&amp;ndash; &amp;mdash; &amp;ldquo; &amp;rdq..</description>
      <category>Language/PHP</category>
      <category>ANSI</category>
      <category>cp949</category>
      <category>EUC-KR</category>
      <category>iconv</category>
      <category>php</category>
      <category>strtr</category>
      <category>UTF-8</category>
      <category>레거시DB</category>
      <category>유니코드</category>
      <category>특수문자</category>
      <author>소소한 늙은 개발자의 메모장</author>
      <guid isPermaLink="true">https://userpark.tistory.com/160</guid>
      <comments>https://userpark.tistory.com/160#entry160comment</comments>
      <pubDate>Thu, 2 Jul 2026 11:24:18 +0900</pubDate>
    </item>
    <item>
      <title>윈도우 서버 시간(NTP) 동기화 문제 해결 경험기</title>
      <link>https://userpark.tistory.com/159</link>
      <description>윈도우 서버를 사용하다 보면 시간이 2~3분 정도 차이가 발생하는 경우가 있습니다.저도 실제 운영 중인 서버에서 이런 문제를 겪었고, 여러 차례 인터넷 시간 서버와 동기화를 시도했지만 쉽게 해결되지 않았습니다.
&amp;nbsp;

&amp;nbsp;
■ 테스트한 시간 서버 목록
제가 직접 테스트해본 서버는 다음과 같습니다.

time.bora.net
time.windows.com
time.nist.gov
time-nw.nist.gov
time-a.nist.gov
t..</description>
      <category>S.W./Microsoft</category>
      <category>Microsoft</category>
      <category>ntp</category>
      <category>Windows</category>
      <category>서버시간</category>
      <category>시간동기화</category>
      <category>시간오차</category>
      <category>윈도우서버</category>
      <author>소소한 늙은 개발자의 메모장</author>
      <guid isPermaLink="true">https://userpark.tistory.com/159</guid>
      <comments>https://userpark.tistory.com/159#entry159comment</comments>
      <pubDate>Mon, 18 Aug 2025 11:40:11 +0900</pubDate>
    </item>
    <item>
      <title>ASP.NET Core로 웹 API 만들기 (Controller-based APIs)</title>
      <link>https://userpark.tistory.com/158</link>
      <description>ASP.NET&amp;nbsp;Core&amp;nbsp;기반의&amp;nbsp;API&amp;nbsp;프로젝트&amp;nbsp;진행 중에&amp;nbsp;ControllerBase class 기반 웹 API에 관한 학습 자료를 기록한 것입니다.
가장 기본적인 것이라 참고 URL을 기록합니다.
학습해 가면서 추가적인 정보 공유가 필요하면 본글을 계속 갱신하겠습니다.
&amp;nbsp;
■ 참고 URL (Microsoft) : ASP.NET&amp;nbsp;Core로&amp;nbsp;웹&amp;nbsp;API&amp;nbsp;만들기
..</description>
      <category>Language/ASP.NET</category>
      <category>API</category>
      <category>ASP.NET</category>
      <category>asp.net core</category>
      <category>controller</category>
      <category>ControllerBase</category>
      <category>Microsoft</category>
      <category>MVC</category>
      <category>WebApi</category>
      <category>웹API</category>
      <category>컨트롤러</category>
      <author>소소한 늙은 개발자의 메모장</author>
      <guid isPermaLink="true">https://userpark.tistory.com/158</guid>
      <comments>https://userpark.tistory.com/158#entry158comment</comments>
      <pubDate>Wed, 6 Aug 2025 13:24:24 +0900</pubDate>
    </item>
    <item>
      <title>ASP.NET Core의 Razor Pages 활성화 설정 (Program.cs)</title>
      <link>https://userpark.tistory.com/157</link>
      <description>&amp;nbsp;
ASP.NET Core 기반의 API 프로젝트 진행 중에 Razor Page를 직접 활성화는 방법을 기록한 것입니다.
기본적으로 설정은 되어 있지만, 해당 Microsoft 자료도 참고할 겸해서 기록 개념으로 남겨 둡니다.
어려운 내용은 없으니 코드 및 참고URL을 포함하였으니, 참고하시 바랍니다.
&amp;nbsp;
&amp;nbsp;
Program.cs
/**
 * 추가 참고 : https://userpark.net/156 (ASP.NET Core에서..</description>
      <category>Language/ASP.NET</category>
      <category>ASP.NET</category>
      <category>asp.net core</category>
      <category>Microsoft</category>
      <category>MVC</category>
      <category>program.cs</category>
      <category>razor</category>
      <category>Razor page</category>
      <category>웹개발</category>
      <category>환경설정</category>
      <category>활성화</category>
      <author>소소한 늙은 개발자의 메모장</author>
      <guid isPermaLink="true">https://userpark.tistory.com/157</guid>
      <comments>https://userpark.tistory.com/157#entry157comment</comments>
      <pubDate>Wed, 6 Aug 2025 12:02:05 +0900</pubDate>
    </item>
  </channel>
</rss>