摘要:
今天修改了App.config,结果运行的时候出现了 "配置系统未能初始化" 的错误.找了半天才发现是下面的原因造成的:MSDN里写到"如果配置文件中包含 configSections 元素,则 configSections 元素必须是 configuration 元素的第一个子元素。". 阅读全文
摘要:
C:\Documents and Settings\Administrator>sqlplus /nologSQL*Plus: Release 10.2.0.1.0 - Production on 星期一 7月 5 09:50:36 2010Copyright (c) 1982, 2005, Ora... 阅读全文
摘要:
数据库的启动、关闭数据库的启动:安装启动、非安装启动、共享启动、独占启动、约束启动、强制启动--不登陆的方式进入Sqlplus /nolog安装启动:Startup {pfile=} mount说明:该方式启动数据库的的用途一般为:为数据文件更名;增加、删除或改名事物日志文件;使事物日志归档模式选项有效或失效;进行完整数据库的恢复操作非安装启动startup {pfile=} nomount说明:创建一新的数据库共享启动:允许多个例程并行使用该数据库,即将数据库装入多个现场。startup {pfile=} exclusive独占启动:只允许一个例程使用该数据库startup {pfile=} 阅读全文
摘要:
ora-01034:oracle not available ora-27101:shared mermory realm does not exist 解决办法: 1.启动 sqlplus 输入:SQL>connect / as sysdba; 已连接到空闲例程。2.SQL>startup mount;ORACLE 例程已经启动。Total System Global Area 535662592 bytesFixed Size 1375792 bytesVariable Size 293601744 bytesDatabase Buffers 234881024 bytesRe 阅读全文
摘要:
解决办法:用sysdba身份 把UTL_FILE包的执行权限给这个用户。举例:1.C:\Users\Anakin>sqlplus /nolog2.SQL> connect /as sysdba;(进行数据库连接)3.grant execute on utl_file to xxx(指定的用户名); 阅读全文
摘要:
错误日志,提示: [11/22/07,18:04:40] Microsoft .NET Framework 2.0a: [2] Error: Installation failed for component Microsoft .NET Framework 2.0a. MSI returned error code 1603 [11/22/07,18:05:13] WapUI: [2] DepCheck indicates Microsoft .NET Framework 2.0a is not installed. [11/22/07,18:26:27] Microsoft .NET Fr 阅读全文
摘要:
1、m_strConnect.Format(TEXT("Driver={Microsoft dBASE Driver (*.dbf)}; DriverID=277;Dbq=%s;"),Path);Path是dbf文件的目录,存在的问题创建dbf,只有string 类型。2、m_strConnect.Format(TEXT("Provider=Microsoft.Jet.OLEDB.4.0;Data Source=%s;Extended Properties=dBASE III "),szPath); 可以创建numeric类型的字段,长度目前发现不可以设 阅读全文
摘要:
You can apply a sub-set of settings from a different settings collection to your current settings to create a more customized development environment. For more information about predefined settings, see Visual Studio Settings.To change select settingsOn the Tools menu, choose Import and Export Setti 阅读全文
摘要:
http://studiostyl.es/ 阅读全文
摘要:
oracle数据库中操作两个不同数据库中的两张表 在这里oracle数据库服务器使用的dblink的方式, 其实dblink和数据库中的view差不多,建dblink的时候需要知道待读取数据库的ip地址,ssid以及数据库用户名和密码。 1、已经配置本地服务 其语法为: CREATE DATABASE LINK 数据库链接名 CONNECT TO 用户名 IDENTIFIED BY 密码 USING ‘本地配置的数据的实例名’;示例: create public database link test connect to userInformation identified by ****.. 阅读全文