摘要:
默认PLSQL Developer查询出来的记录只能是满屏那么多行,一般也就是二三十行,比较不方便。 根据以下设置,可以将其结果都返回。 方法:Tools>Preferences>Window Types>SQL Window,选中右面窗口Records per Page中的All records单选项,并将Maximum result set size(0 is unlimited)项下面的文本框的数值置为0 如下图所示,设置完成后,重新查询就能看到所有返回结果了。 (转贴请注明出处:http://www.cnblogs.com/zhangyongli2011/ 如发... 阅读全文
摘要:
昨天突然发现,我安装的Oracle服务器没有scott用户,没办法只能手动的来导入了。具体方法:首先 用system用户登陆。导入scott.sql脚本(可以在oracle的安装目录的查找),例如我本机的路径,导入就可以写成:@D:\app\Administrator\product\11.2.0\dbhome_1\RDBMS\ADMIN\scott.sql其次 输入:alter user scott identified by tiger; 修改scott密码alter user scott account unlock; 解锁用户conn scott/tiger (以scott模式登录)h 阅读全文