(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 中添加数据库登陆账号并授予数据库所有者权限USE masterGO--通过sp_addlogin创建登录名--DEMO:登陆账号--123456:登陆密码execute sp_addlogin 'DEMO','123456'--切换数据库USE dbtestgo--在数据库dbt...
分类:
数据库 时间:
2014-11-25 23:26:20
阅读次数:
250
批量将表名变为大写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
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
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
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项目,在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
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