官方网站 11i (11.5.10.2+ virtual) Documentation Library Release12 Documentation Library eTRM(Oracle eBusiness Suite Electronic Technical Reference Manual) E-Business Suite Documentation Oracle MetaLink (Support) Login and Registration Orac
官方网站
11i (11.5.10.2+ virtual) Documentation Library
Release12 Documentation Library
eTRM(Oracle eBusiness Suite Electronic Technical Reference Manual)
E-Business Suite Documentation
Oracle MetaLink (Support) Login and Registration
Oracle Integration Repository
Oracle iLearning
ORACLE PARTNERNETWORK
The Official Oracle Wiki
Oracle Blogs
Oracle Open World
Steven Chan(Senior Director in Oracle)
Oracle Magazine
Developer Guides
推荐站点
PTIAN ORACLE EBS 资料库
朱龙春
OracleApps Epicenter
Oracle9i Developer Suite - A Tutorial on Oracle9i Forms and Reports
ITtoolbox Wiki
Business Technology Optimization (BTO) Software (used to be Mercury Interactive)
Bottomline Technologies (used to be Optio Software)
Oracle Supply Chain Manufacturing Users on Plaxo
Oracle Applications Experts Wiki
http://www.orafaq.com/wiki/Scripts
http://apps2fusion.com/
Oracle Apps DBA's Pool
http://onlineappsdba.com/
http://www.oracleappshub.com/
PL/SQL FAQ
EBS开发涉及的软件
EBS or Other Oracle Product
https://edelivery.oracle.com/
you can find downloads for all licensable Oracle products.
Oracle Developer Suite
http://www.oracle.com/technetwork/developer-tools/developer-suite/overview/index.html
Oracle Workflow Server/Client Downloads
http://www.oracle.com/technetwork/database/options/index-092347.html
NOTE:261028.1 - How To Download and Install the LatestOracle Workflow Builder (Client Tool) and XML Gateway Message Designer for E-Business
JDeveloper
http://www.oracle.com/technetwork/developer-tools/jdev/downloads/index.html
sqltools
http://www.sqltools.net/
SQL Developer
http://www.oracle.com/technetwork/developer-tools/sql-developer/downloads/index.html
WinSCP & Putty
http://winscp.net/
DataLoad
Toad for Oracle
============================
http://techie2notice.weebly.com (以下链接均摘自techie2notice.weebly.com)
http://asktom.oracle.com/
http://blogs.warwick.ac.uk/JAVA/tag/oracle/
http://dev.fyicenter.com/faq/oracle/
http://kevinclosson.wordpress.com/
http://onlineappsdba.com/
http://optimizermagic.blogspot.com/
http://oracle-ONLINE-help.blogspot.com/
http://oracle-magic.blogspot.com
http://oracle.anilpassi.com/apps-technology/10.html
http://oracle.ittoolbox.com/
http://oracledoug.com
http://oracletipstricks.blogspot.com/
http://oraqa.com
http://practicalappsdba.wordpress.com/
http://richardfoote.wordpress.com/
http://searchoracle.techtarget.com
http://structureddata.org/
http://toolkit.rdbms-insight.com/scripts.php
http://www.DBA-oracle.com/articles.htm
http://www.FREELISTS.org/archives/oracle-l/
http://www.adp-gmbh.ch/
http://www.akadia.com/
http://www.appsdba.com/
http://www.artofprogramming.net/development/oracle-tips.html
http://www.colestock.com/blogs/readme.html
http://www.cryer.co.uk/brian/oracle/Tuning.htm
http://www.dbapool.com/DIRECTORY/DBA
http://www.dbasupport.com/oracle/scripts/
http://www.dbatoolz.com/scripts_desc.htm
http://www.dbazine.com/oracle/OR-articles/
http://www.dba-village.com
http://www.dbspecialists.com
http://www.front-ROW-seat.com/
http://www.geocities.com/oracletricks/
http://www.harmanresearch.com/oracle/
http://www.idevelopment.info/DATA/Oracle/DBA_tips/Database_Administration/
http://www.jlcomp.demon.co.uk/
http://www.juliandyke.com
http://www.kevinloney.com/
http://www.lazydba.com/
http://www.materialdreams.com/oracle/scripts.html
http://www.oaktable.net/main.jsp
http://www.oracle-base.com/DBA/DBACategories.php
http://www.oracle-developer.net/
http://www.oracle.com/technology/oramag/code/tips2007/INDEX.html
http://www.oracle.com/technology/pub/articles/tech_dba.html
http://www.oraclealchemist.com/
http://www.oracledba.co.uk/
http://www.oraclepoint.com/oralife/
http://www.oraclepower.com/
http://www.orafaq.com/scripts/
http://www.petefinnigan.com
http://www.pythian.com/news/papers.html
http://www.quest-pipelines.com/pipelines/DBA/INDEX.asp
http://www.rittmanmead.com/blog
http://www.sap-img.com/oracle-DATABASE/oracle-application-hints-AND-tips.htm
http://www.sap-img.com/oracle-DATABASE/oracle-tips-INDEX.htm
http://www.smart-soft.co.uk/Oracle/oracle-tips-AND-tricks.htm
http://www.spviewer.com/
http://www.think-forward.com/sql_scripts.htm
http://blog.csdn.net/pan_tian/article/details/7472310

方法:1、利用“select*from user_indexes where table_name=表名”语句查询表中索引;2、利用“select*from all_indexes where table_name=表名”语句查询所有索引。

oracle asm指的是“自动存储管理”,是一种卷管理器,可自动管理磁盘组并提供有效的数据冗余功能;它是做为单独的Oracle实例实施和部署。asm的优势:1、配置简单、可最大化推动数据库合并的存储资源利用;2、支持BIGFILE文件等。

在Oracle中,可利用lsnrctl命令查询端口号,该命令是Oracle的监听命令;在启动、关闭或重启oracle监听器之前可使用该命令检查oracle监听器的状态,语法为“lsnrctl status”,结果PORT后的内容就是端口号。

在oracle中,可以利用“TO_SINGLE_BYTE(String)”将全角转换为半角;“TO_SINGLE_BYTE”函数可以将参数中所有多字节字符都替换为等价的单字节字符,只有当数据库字符集同时包含多字节和单字节字符的时候有效。

在oracle中,可以利用“drop sequence sequence名”来删除sequence;sequence是自动增加数字序列的意思,也就是序列号,序列号自动增加不能重置,因此需要利用drop sequence语句来删除序列。

方法:1、利用“LOWER(字段值)”将字段转为小写,或者利用“UPPER(字段值)”将字段转为大写;2、利用“REGEXP_LIKE(字符串,正则表达式,'i')”,当参数设置为“i”时,说明进行匹配不区分大小写。

在oracle中,可以利用“select ... From all_tab_columns where table_name=upper('表名') AND owner=upper('数据库登录用户名');”语句查询数据库表的数据类型。

方法:1、利用“alter system set sessions=修改后的数值 scope=spfile”语句修改session参数;2、修改参数之后利用“shutdown immediate – startup”语句重启服务器即可生效。


热AI工具

Undresser.AI Undress
人工智能驱动的应用程序,用于创建逼真的裸体照片

AI Clothes Remover
用于从照片中去除衣服的在线人工智能工具。

Undress AI Tool
免费脱衣服图片

Clothoff.io
AI脱衣机

AI Hentai Generator
免费生成ai无尽的。

热门文章

热工具

SublimeText3 Mac版
神级代码编辑软件(SublimeText3)

DVWA
Damn Vulnerable Web App (DVWA) 是一个PHP/MySQL的Web应用程序,非常容易受到攻击。它的主要目标是成为安全专业人员在合法环境中测试自己的技能和工具的辅助工具,帮助Web开发人员更好地理解保护Web应用程序的过程,并帮助教师/学生在课堂环境中教授/学习Web应用程序安全。DVWA的目标是通过简单直接的界面练习一些最常见的Web漏洞,难度各不相同。请注意,该软件中

PhpStorm Mac 版本
最新(2018.2.1 )专业的PHP集成开发工具

Atom编辑器mac版下载
最流行的的开源编辑器

MinGW - 适用于 Windows 的极简 GNU
这个项目正在迁移到osdn.net/projects/mingw的过程中,你可以继续在那里关注我们。MinGW:GNU编译器集合(GCC)的本地Windows移植版本,可自由分发的导入库和用于构建本地Windows应用程序的头文件;包括对MSVC运行时的扩展,以支持C99功能。MinGW的所有软件都可以在64位Windows平台上运行。