<?xml version="1.0" encoding="gbk"?>
<rss version="2.0">
  <channel>
    <title>firemail - Oracle</title>
    <link>http://firemail.wang:8088/forum.php?mod=forumdisplay&amp;fid=198</link>
    <description>Latest 20 threads of Oracle</description>
    <copyright>Copyright(C) firemail</copyright>
    <generator>Discuz! Board by Comsenz Inc.</generator>
    <lastBuildDate>Wed, 03 Jun 2026 13:59:46 +0000</lastBuildDate>
    <ttl>60</ttl>
    <image>
      <url>http://firemail.wang:8088/static/image/common/logo_88_31.gif</url>
      <title>firemail</title>
      <link>http://firemail.wang:8088/</link>
    </image>
    <item>
      <title>linux下oracle客户端环境变量配置</title>
      <link>http://firemail.wang:8088/forum.php?mod=viewthread&amp;tid=9905</link>
      <description><![CDATA[linux下oracle客户端环境变量配置
修改～目录下的.bashrc文件，格式类似于附件文件]]></description>
      <category>Oracle</category>
      <author>Qter</author>
      <pubDate>Sat, 01 Feb 2020 14:04:17 +0000</pubDate>
    </item>
    <item>
      <title>常用工具tools</title>
      <link>http://firemail.wang:8088/forum.php?mod=viewthread&amp;tid=9900</link>
      <description><![CDATA[SQLULDR2: (全球领先的Oracle文本导出工具)

http://www.anysql.net/software/sqluldr2sdk.zip


DataCopy: (全球领先的Oracle到Oracle数据迁移工具)

http://www.anysql.net/software/datacopysdk.zip


想拥有自已的SQLULDR2与DataCopy工具? 可以在这两个开 ...]]></description>
      <category>Oracle</category>
      <author>Qter</author>
      <pubDate>Thu, 30 Jan 2020 03:34:58 +0000</pubDate>
    </item>
    <item>
      <title>PLSQL</title>
      <link>http://firemail.wang:8088/forum.php?mod=viewthread&amp;tid=9899</link>
      <description><![CDATA[plsql生成插入数据的sql语句
PL/SQL:
Tools -&gt; export table -&gt;选中要输出的表。
Oracle Export 
会输入表格形式，
用sql Inserts 就可以输出插入数据的sql语句了。在where clause里还可以输入查询条件。
很方便~
回去试试sql sever能不能这样。



1.查看表 ...]]></description>
      <category>Oracle</category>
      <author>Qter</author>
      <pubDate>Thu, 30 Jan 2020 03:29:55 +0000</pubDate>
    </item>
    <item>
      <title>oracle sql常用操作</title>
      <link>http://firemail.wang:8088/forum.php?mod=viewthread&amp;tid=9898</link>
      <description><![CDATA[1.修改TNS
tnsnames.ora文件
D:\\oracle\\product\\10.2.0\\client_1\\NETWORK\\ADMIN
2.查询表列
Select * from user_tab_columns where table_Name =upper(trim(\'mod_cdt_zte\')) 

Select COLUMN_NAME,DATA_TYPE,DATA_PRECISION,DATA_SCALE
from user_tab_columns 
 ...]]></description>
      <category>Oracle</category>
      <author>Qter</author>
      <pubDate>Thu, 30 Jan 2020 02:38:21 +0000</pubDate>
    </item>
    <item>
      <title>Oracle中CASE WHEN的用法实例</title>
      <link>http://firemail.wang:8088/forum.php?mod=viewthread&amp;tid=9897</link>
      <description><![CDATA[实例演示：

　　（1）查询表users中的数据。

　　select u.id,u.realname,U.SEX from users u;

　　查询结果如下

　　ID    REALNAME SEX
　　1  10082 松XX
　　2  10084 林XX     1
　　3  10087 西XX
　　4  10100 胡XX
　　5  10102 龙XX     1
 ...]]></description>
      <category>Oracle</category>
      <author>Qter</author>
      <pubDate>Thu, 30 Jan 2020 02:37:23 +0000</pubDate>
    </item>
    <item>
      <title>ORA-12518 TNS监听程序无法分发客户机连接 解决办法</title>
      <link>http://firemail.wang:8088/forum.php?mod=viewthread&amp;tid=9896</link>
      <description><![CDATA[cmdsqlpls /nologconnect sys/test as sysdba http://hi.baidu.com/%BD%A3%CA%A5_%B7%A8%CA%A6/blog/item/4f775c035fad32f108fa938c.html案例1  ORA-12518 TNS:监听程序无法分发客户机连接 解决办法一、【问题描述】   最近，在系统高峰期的时候，会提示如下的错误，致 ...]]></description>
      <category>Oracle</category>
      <author>Qter</author>
      <pubDate>Thu, 30 Jan 2020 02:33:49 +0000</pubDate>
    </item>
    <item>
      <title>Oracle函数</title>
      <link>http://firemail.wang:8088/forum.php?mod=viewthread&amp;tid=9895</link>
      <description><![CDATA[Oracle的instr函数
INSTR

　　(源字符串, 目标字符串, 起始位置, 匹配序号)

　　在Oracle/PLSQL中，instr函数返回要截取的字符串在源字符串中的位置。只检索一次，就是说从字符的开始

　　到字符的结尾就结束。

　　语法如下：

　　instr( string1, str ...]]></description>
      <category>Oracle</category>
      <author>Qter</author>
      <pubDate>Thu, 30 Jan 2020 02:31:53 +0000</pubDate>
    </item>
    <item>
      <title>字符集设置</title>
      <link>http://firemail.wang:8088/forum.php?mod=viewthread&amp;tid=9781</link>
      <description><![CDATA[select name, value$ from sys.props$ where name like \'NLS%\';

2. 查看 NLS_LANG 的方法 
Windows使用:
 echo %NLS_LANG%
 如:
 E:/&gt;echo %NLS_LANG%
 AMERICAN_AMERICA.ZHS16GBK
 Unix使用:
 env|grep NLS_LANG
 如:
 /opt/oracle&gt;env|grep NLS_LANG
 NL ...]]></description>
      <category>Oracle</category>
      <author>Qter</author>
      <pubDate>Tue, 31 Dec 2019 05:18:27 +0000</pubDate>
    </item>
    <item>
      <title>ORA-14400 插入的分区关键字未映射到任何分区</title>
      <link>http://firemail.wang:8088/forum.php?mod=viewthread&amp;tid=9780</link>
      <description><![CDATA[记录 1 被拒绝 - 表 MOD_CDL_PILOT_CELL_1X 出现错误。
ORA-14400 插入的分区关键字未映射到任何分区

sqlldr提示：达到提交点 - 逻辑记录计数 1

如下创建的表分区造成START_TIME为2012-02-29 07:07:28的记录无入插入，出现上面的错误
create table MOD_CDL_PILO ...]]></description>
      <category>Oracle</category>
      <author>Qter</author>
      <pubDate>Tue, 31 Dec 2019 05:17:23 +0000</pubDate>
    </item>
    <item>
      <title>批量连续处理脚本</title>
      <link>http://firemail.wang:8088/forum.php?mod=viewthread&amp;tid=8279</link>
      <description><![CDATA[declare
  cusObjCount number;   
begin
    dbms_output.put_line(\'试验单位 申请表\');
    select count(1) into cusObjCount from user_tables where table_name=\'SYDW_SQB\';   
    if cusObjCount &gt; 0 then   
      execute immediate \'drop table SYDW_SQ ...]]></description>
      <category>Oracle</category>
      <author>jeesite</author>
      <pubDate>Sat, 10 Dec 2016 13:05:14 +0000</pubDate>
    </item>
    <item>
      <title>oracle常用数据库字段类型</title>
      <link>http://firemail.wang:8088/forum.php?mod=viewthread&amp;tid=8278</link>
      <description><![CDATA[VARCHAR2 [/backcolor]可做索引的最大长度749 [/backcolor]变长字符串，与CHAR类型不同，它不会使用空格填充至最大长度。VARCHAR2最多可以存储4,000字节的信息。
NVARCHAR2类型这是一个包含UNICODE格式数据的变长字符串。 NVARCHAR2最多可以存储4,000字节的信息。根据 ...]]></description>
      <category>Oracle</category>
      <author>jeesite</author>
      <pubDate>Sat, 10 Dec 2016 10:18:39 +0000</pubDate>
    </item>
    <item>
      <title>数据库的脚本文件.sql连续执行方案</title>
      <link>http://firemail.wang:8088/forum.php?mod=viewthread&amp;tid=8277</link>
      <description><![CDATA[.sql文件中遇到错误，会继续执行下面的内容吗？
如何把错误输出，接着执行下去？]]></description>
      <category>Oracle</category>
      <author>jeesite</author>
      <pubDate>Sat, 10 Dec 2016 10:08:06 +0000</pubDate>
    </item>
    <item>
      <title>oracle导入dmp文件</title>
      <link>http://firemail.wang:8088/forum.php?mod=viewthread&amp;tid=8249</link>
      <description><![CDATA[在运行中输入cmd  弹出命令行窗口 ，[找到你的oracle 的安装目录  找到bin目录 之后 在bin目录下] 输入:imp userid=用户名/密码@orcl file=d:\\xx\\c60.dmp full=y
用户名 ：就是你的目标用户 。
密码 ：就是你的目标用户登录密码。
orcl:是实例名称 就是数据库名
fil ...]]></description>
      <category>Oracle</category>
      <author>firemail</author>
      <pubDate>Sat, 03 Dec 2016 05:31:03 +0000</pubDate>
    </item>
    <item>
      <title>用sqlplus为oracle创建用户和表空间</title>
      <link>http://firemail.wang:8088/forum.php?mod=viewthread&amp;tid=8248</link>
      <description><![CDATA[在Windows系统下， 请先点击“开始”，然后点“运行”，输入cmd并点击“确定”，打开命令行窗口[/backcolor]
做好上述准备工作以后，输入以下命令：[/backcolor]
　　sqlplus   /nolog[/backcolor]
　　回车后，将出现提示符 SQL&gt;[/backcolor]
　　这时输入[/backco ...]]></description>
      <category>Oracle</category>
      <author>firemail</author>
      <pubDate>Sat, 03 Dec 2016 05:26:46 +0000</pubDate>
    </item>
    <item>
      <title>ORA-12514 TNS 监听程序当前无法识别连接描述符中请求服务 的解决方法</title>
      <link>http://firemail.wang:8088/forum.php?mod=viewthread&amp;tid=8247</link>
      <description><![CDATA[确认监听程序已经启动[/backcolor]
通过重启服务的方式启动数据库，再次连接仍无法连接服务器。[/backcolor]]]></description>
      <category>Oracle</category>
      <author>firemail</author>
      <pubDate>Sat, 03 Dec 2016 04:47:44 +0000</pubDate>
    </item>
    <item>
      <title>L/SQL Dev连接Oracle弹出空白提示框的解决方法分享</title>
      <link>http://firemail.wang:8088/forum.php?mod=viewthread&amp;tid=8246</link>
      <description><![CDATA[1.权限不够，导致弹出空吧提示框。（直接上链接）http://jingyan.baidu.com/article/066074d6760959c3c21cb0d6.html就PL/SQL图标上点右键---属性---兼容性--管理员身份运行此程序的勾打上，即可]]></description>
      <category>Oracle</category>
      <author>firemail</author>
      <pubDate>Sat, 03 Dec 2016 04:42:50 +0000</pubDate>
    </item>
    <item>
      <title>PLSQL连接本地的Oracle数据库</title>
      <link>http://firemail.wang:8088/forum.php?mod=viewthread&amp;tid=8245</link>
      <description><![CDATA[首先，我们必须有下面步准备：1.安装好Oracle2.安装好PLSQL developer选择：Net Configuration Assistant(红色框所指)1.配置监听程序
a.添加监听程序名称：LISTENER

选定协议：TCP
默认1521端口
启用此监听程序


b.本地Net服务名配置
添加服务名: orcl
协议 ...]]></description>
      <category>Oracle</category>
      <author>firemail</author>
      <pubDate>Sat, 03 Dec 2016 03:28:51 +0000</pubDate>
    </item>
    <item>
      <title>oracle10g安装图解(win7)</title>
      <link>http://firemail.wang:8088/forum.php?mod=viewthread&amp;tid=8244</link>
      <description><![CDATA[本次安装会话的日志可见于：
C:\\Program Files (x86)\\Oracle\\Inventory\\logs\\installActions2016-12-03_09-29-36AM.log

运行解压缩出的 Oracle 10g 安装程序。打开oracle10g的安装目录，找到setup.exe，
注意：如下操作，右键setup.exe选择属性-&gt;选择兼容性，  以 ...]]></description>
      <category>Oracle</category>
      <author>firemail</author>
      <pubDate>Sat, 03 Dec 2016 02:32:18 +0000</pubDate>
    </item>
    <item>
      <title>解决安装oracle时指定的SID在本机上已经存在</title>
      <link>http://firemail.wang:8088/forum.php?mod=viewthread&amp;tid=8243</link>
      <description><![CDATA[在安装oracle的时候如果出现了，指定的SID在本机上已经存在。这样的报错的话。这边你肯定是第二次在安装你的oracle了，这里出现这样的错误是你没有吧原先的那些关于oracle的东西给清理干净，这里我们先再次的对你的oracle进行一次彻底的卸载吧。
首先启动你的计算机→ ...]]></description>
      <category>Oracle</category>
      <author>firemail</author>
      <pubDate>Sat, 03 Dec 2016 02:24:24 +0000</pubDate>
    </item>
    <item>
      <title>安装检测到系统的主 IP 地址是 DHCP 分配的地址</title>
      <link>http://firemail.wang:8088/forum.php?mod=viewthread&amp;tid=8242</link>
      <description><![CDATA[检查完成。此次检查的总体结果为: 失败]]></description>
      <category>Oracle</category>
      <author>firemail</author>
      <pubDate>Sat, 03 Dec 2016 02:09:23 +0000</pubDate>
    </item>
  </channel>
</rss>