码迷,mamicode.com
首页 >  
搜索关键字:not execute    ( 2489个结果
Linux常用命令(3)-文件和目录管理
(1)、Linux 文件权限和目录配置 Linux 文件分三种身份 owner、group、others。 三种权限 read、write、execute #ls -al drwxr-xr-x   1     root   root  4230  2012-09-12 17:21 jdk-7u7 对应文件权限  连接数    用户组  用户 文件大小  最后修改日期      文件名 其...
分类:系统相关   时间:2014-11-26 18:54:17    阅读次数:233
Sqlserver 中添加数据库登陆账号并授予数据库所有者权限
Sqlserver 中添加数据库登陆账号并授予数据库所有者权限USE masterGO--通过sp_addlogin创建登录名--DEMO:登陆账号--123456:登陆密码execute sp_addlogin 'DEMO','123456'--切换数据库USE dbtestgo--在数据库dbt...
分类:数据库   时间:2014-11-25 23:26:20    阅读次数:250
oracle表名与列名小写转成大写
批量将表名变为大写begin for c in (select table_name tn from user_tables where table_name upper(table_name)) loop begin execute immediate 'alter table "'...
分类:数据库   时间:2014-11-25 18:15:34    阅读次数:340
解决Failed to execute goal org.apache.maven.plugins
1.Maven构建失败Failedtoexecutegoalorg.apache.maven.plugins:maven-compiler-plugin:2.3.2:compile(default-compile)onprojectoecp:Compilationfailure2.解决方法把jdk换...
分类:Web程序   时间:2014-11-25 12:35:21    阅读次数:185
no talloc stackframe at ../source3/param/loadparm
In Ubuntu 14.04 with Samba server installed, every time you will get this error message when execute sudo command. run sudo?pam-auth-update and unselect "SMB password synchronization", this error...
分类:其他好文   时间:2014-11-24 15:32:00    阅读次数:202
sqlserver判断该路径是否存在该文件
declare @result int =0declare @path nvarchar(200)='d:\1.csv'execute master.dbo.xp_fileexist @path ,@result output if @result =1begin print'有文件'endpri....
分类:数据库   时间:2014-11-24 11:47:44    阅读次数:190
Maven实战--缺少Jar包
新建的Maven项目,在build的时候总是打包失败,提示少Jar包,如下: [ERROR] Failed to execute goal on project JYYPT_TOOL: Could not resolve dependencies for project com.tgb:JYYPT_TOOL:jar:0.0.1-SNAPSHOT: The following artifacts...
分类:编程语言   时间:2014-11-24 00:56:11    阅读次数:230
【2014-11-22】《The Hardware/Software Interface》– Section 3
The time required to execute a program depends on: The program The compiler The instruction set architecture(ISA) The hardware implementation The ISA ...
分类:其他好文   时间:2014-11-22 17:25:53    阅读次数:197
跳还是不跳?这是个问题
周一(2014-11-17)有个项目进行变更,而且是重大变更,DB测操作从早上持续到下午17点,QA同事到晚上10点测试后发现,slave上的数据与master上不一致。忘介绍了,该项目的该模块有读请求以及delete逻辑在上面,被吓到没?这个问题应该在情理之中但又在意料之外,其实DBA在下午DB变更时便遇到slave卡住:Could not execute Delete_rows event o...
分类:其他好文   时间:2014-11-22 02:02:33    阅读次数:193
如何对数据库进行监控检查
oracle自动工作负载库(AWR):采集与性能相关的统计数据,并从统计的数据中导出性能量度,以跟踪数据库潜在的问题。 如何生成oracle数据库的自动负载库报告。 手工生成一份oracle数据库的快照: SQL>execute dbms_workload_repository.create_sna...
分类:数据库   时间:2014-11-21 14:14:35    阅读次数:296
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!