12
返回列表 发新帖
楼主: body

關於Form 中使用的synonym

[复制链接]
论坛徽章:
1
授权会员
日期:2005-10-30 17:05:33
11#
 楼主| 发表于 2005-7-4 08:34 | 只看该作者
真沒有人,這樣用過。
有沒有如此情形的解決方法

使用道具 举报

回复
论坛徽章:
18
管理团队2006纪念徽章
日期:2006-04-16 22:44:45马上有对象
日期:2014-02-19 11:55:14马上有钱
日期:2014-02-19 11:55:14马上有房
日期:2014-02-19 11:55:14马上有车
日期:2014-02-19 11:55:142012新春纪念徽章
日期:2012-02-13 15:11:362012新春纪念徽章
日期:2012-02-13 15:11:362012新春纪念徽章
日期:2012-02-13 15:11:362012新春纪念徽章
日期:2012-02-13 15:11:362012新春纪念徽章
日期:2012-02-13 15:11:36
12#
发表于 2005-7-4 08:57 | 只看该作者
从METALINK查到下面的文章:
What is a 'core dump' ?
~~~~~~~~~~~~~~~~~~~~~~~               
A core dump is an image copy of a processes state at the instant         it 'aborted'. It is produced in the form of a file called 'core'         
usually located in the current directory.   
What causes a core dump ?
~~~~~~~~~~~~~~~~~~~~~~~~~         
There are many situations which can cause a core dump to be produced,         
but it is usually because the process has attempted to do something         which the operating system does not like. The most common causes         of this are:                  
The program tried to access memory outside its allowed range.                  The program tried to obtain a resource which was either                 exhausted or unavailable.                 
An attempt was made to execute illegal instructions.                 
An attempt was made to read unaligned data         
In Unix systems the offending process is sent one of a number of         signals which force a core dump to be produced. It is also possible         for a user to produce a core dump by sending one of these signals         
to a process manually.

使用道具 举报

回复
论坛徽章:
18
管理团队2006纪念徽章
日期:2006-04-16 22:44:45马上有对象
日期:2014-02-19 11:55:14马上有钱
日期:2014-02-19 11:55:14马上有房
日期:2014-02-19 11:55:14马上有车
日期:2014-02-19 11:55:142012新春纪念徽章
日期:2012-02-13 15:11:362012新春纪念徽章
日期:2012-02-13 15:11:362012新春纪念徽章
日期:2012-02-13 15:11:362012新春纪念徽章
日期:2012-02-13 15:11:362012新春纪念徽章
日期:2012-02-13 15:11:36
13#
发表于 2005-7-4 08:59 | 只看该作者
What should I do if I get a core dump ? ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~         As with any problem you should first note down the FULL version         numbers of the product, the RDBMS, PL/SQL (if used) and any          related products.          You should also note the EXACT command you were running when          this occurred. Eg: If it was a SQL*Forms problem and you were         using 'mrunform30', write this down.  This command will be referred         to as 'program' below.           Now follow the instructions below in order:          1) Check if you have a 'core' file, it should be in the directory where             the command was issued, or in $ORACLE_HOME/dbs OR            $ORACLE_HOME/dbs/core_NNNNN if it is the 'oracle' executable.            2) Log in as ORACLE and cd to the directory containing the core file.              Then issue:                           file core             This should identify the "program" name to use in the next step,             e.g.: oracle           3) Log in as ORACLE and change in to the $ORACLE_HOME/bin            directory. Enter the command:                           file program             and write the result down letter for letter. If the word 'dynamic'             or 'dynamically linked' appears in the output of this command            then please make a note of this as there are a few platforms on            which Oracle does NOT support dynamic linking and this may be            the cause of your problem.           4) Now enter:                          chmod +r program             to add read permission to the program.            5) Log out , then log in as the user who encountered the error.            The next step will vary slightly depending on which version of            Unix you are using. One of the following commands should exist            on your machine - try each in order until you find one that exists:                Command   NB           Exit command     Stack Trace command               -------   --           ------------     -------------------                 dbx                  quit             where                 xdb     (HPUX 10)    quit             t                 gdb     (HPUX 11)    q                bt                 dde     (HPUX 11)    q                bt                 sdb                  q                t                  adb                  $q (or Ctrl-D)   $c                 debug        (PTX only)   quit              stack                 gdb     (Linux)      quit             bt             Change to the directory where the core dump is located and enter            the commands as in the relevant example below. If you are not            sure which program produced the 'core' file then on some Unix             platforms the command 'file core' will tell you the executable            name that the core file is from (this does not work on ALL             Unix platforms, see note below.) .             Example commands:                  DBX:        $ script /tmp/mystack                             $ dbx $ORACLE_HOME/bin/<program> core                              (dbx) where                             ...                 << Stack should appear here                             (dbx) quit                             $ exit                  XDB:        $ script /tmp/mystack                             $ xdb $ORACLE_HOME/bin/<program> core                              (xdb) t                                  ...                 << Stack should appear here                             (xdb) quit                             $ exit                  SDB:        $ script /tmp/mystack                             $ sdb $ORACLE_HOME/bin/<program> core                              (sdb) t                                   ...                 << Stack should appear here                             (sdb) q                             $ exit                  (NOTE: In the 'adb' commands below literally type the $c & $q)                 ADB:        $ script /tmp/mystack                             $ adb $ORACLE_HOME/bin/<program> core                               $c      << NB: adb has no prompt so just enter $c                             ...                                               $q                             $ exit                  DEBUG:      $ script /tmp/mystack                             $ debug -c core $ORACLE_HOME/bin/<program>                              debug> stack                             ...                 << Stack should appear here                             debug> quit                             $ exit                  GDB:        $ script /tmp/mystack                             $ gdb $ORACLE_HOME/bin/<program> core                             (gdb) bt                             ...                 << Stack should appear here                             (gdb) quit                             $ exit                  DDE:        $ script /tmp/mystack                             $ dde -ui line core $ORACLE_HOME/bin/<program>                             dde> bt                             ...                             dde> q                             $exit              Assuming this worked then the stack trace should be shown in the            file '/tmp/mystack'. Upload this to Oracle Support.          6) If the debug command failed to give a stack trace then try using            a different debugger from the list above (if available).            If all debuggers fail then there is probably a problem with            either the permissions or the file type - see the section below            and then contact Oracle Support with all the details you have so far.

使用道具 举报

回复
论坛徽章:
1
授权会员
日期:2005-10-30 17:05:33
14#
 楼主| 发表于 2005-7-4 09:40 | 只看该作者
kaycat 版主:
  不是很懂上面的意思。
 我用 sql developer ,沒有任何問題。
 關 Check if you have a 'core' file,我是用oracle AOL 開發 form
    有很多core的pll , 我是在 inv 開發 那就是 INVCORE.pll  嗎?

此現象在 ERP Server 是 Memory fault(coredump)
            在 Client OS 開發 compile 時 自動關閉Form

使用道具 举报

回复
论坛徽章:
1
授权会员
日期:2005-10-30 17:05:33
15#
 楼主| 发表于 2005-7-4 09:44 | 只看该作者
是這個core ?

oraptst>ll core
-rw-------   1 ptstmgr    dba        11783564 Jul  2 16:17 core

使用道具 举报

回复
论坛徽章:
1
授权会员
日期:2005-10-30 17:05:33
16#
 楼主| 发表于 2005-7-4 09:46 | 只看该作者
oraptst>ll core
-rw-------   1 ptstmgr    dba        11783564 Jul  2 16:17 core
oraptst>
oraptst>pwd
/prod/ptst
oraptst>file core
core:           core file from 'f60webmx' - received SIGBUS

不太了解,這些東東。

使用道具 举报

回复
论坛徽章:
18
管理团队2006纪念徽章
日期:2006-04-16 22:44:45马上有对象
日期:2014-02-19 11:55:14马上有钱
日期:2014-02-19 11:55:14马上有房
日期:2014-02-19 11:55:14马上有车
日期:2014-02-19 11:55:142012新春纪念徽章
日期:2012-02-13 15:11:362012新春纪念徽章
日期:2012-02-13 15:11:362012新春纪念徽章
日期:2012-02-13 15:11:362012新春纪念徽章
日期:2012-02-13 15:11:362012新春纪念徽章
日期:2012-02-13 15:11:36
17#
发表于 2005-7-4 09:50 | 只看该作者
刚刚贴过来,排版太乱
看附件吧

note1812.1.rar

7.33 KB, 下载次数: 8

使用道具 举报

回复
论坛徽章:
24
ITPUB元老
日期:2007-08-09 20:13:55蜘蛛蛋
日期:2012-11-18 21:00:26灰彻蛋
日期:2012-04-14 18:30:002012新春纪念徽章
日期:2012-01-04 11:49:54ITPUB十周年纪念徽章
日期:2011-11-01 16:20:282011新春纪念徽章
日期:2011-02-18 11:43:342010年世界杯参赛球队:尼日利亚
日期:2010-03-16 13:40:192009日食纪念
日期:2009-07-22 09:30:00生肖徽章2007版:虎
日期:2009-07-22 09:38:24奥运会纪念徽章:赛艇
日期:2008-10-24 13:25:17
18#
发表于 2005-7-4 11:46 | 只看该作者
FORM里好像也不能用分析函数

使用道具 举报

回复

您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

TOP技术积分榜 社区积分榜 徽章 团队 统计 知识索引树 积分竞拍 文本模式 帮助
  ITPUB首页 | ITPUB论坛 | 数据库技术 | 企业信息化 | 开发技术 | 微软技术 | 软件工程与项目管理 | IBM技术园地 | 行业纵向讨论 | IT招聘 | IT文档
  ChinaUnix | ChinaUnix博客 | ChinaUnix论坛
CopyRight 1999-2011 itpub.net All Right Reserved. 北京盛拓优讯信息技术有限公司版权所有 联系我们 未成年人举报专区 
京ICP备16024965号-8  北京市公安局海淀分局网监中心备案编号:11010802021510 广播电视节目制作经营许可证:编号(京)字第1149号
  
快速回复 返回顶部 返回列表