- 浏览: 83861 次
- 性别:
- 来自: 长春
最新评论
文章列表
一、SQLServer自动作业备份
1. 打开SQL Server Management Studio
2. 启动SQL Server代理
3. 点击作业-新建作业
4. “常规”中输入作业的名称
5. 新建步骤,类型选T-SQL,在下面的命令中输入下面的语句
DECLARE @strPath NVARCHAR(200)set @strPath = convert(NVARCHAR(19),getdate(),120)set @strPath = REPLACE(@strPath, ':' , '.')set @strPath = 'C:\sqlbak\' + 'dateba ...
根据微软官方的帮助和支持的说法,IIS虽然安装了,但还需要安装SQL Server依赖于IIS的指定组件才认为IIS功能要求已安装完整。
指定需要安装的组件列表如下:
组件 文件夹
静态内容 常见的HTTP功能
默认文档 常见的HTTP功能
HTTP重定向 常见的HTTP功能
目录浏览 常见的HTTP功能
ASP。NET 应用程序开发
ISAPI扩展 应用程序开发
ISAPI筛选器 应用程序开发
Windows身份验证安全
IIS元数据库管理工具
IIS6WMI管理工具
安装方法:
管理-角色-添加角色
oracle扩展表空间
- 博客分类:
- oracle
环境: linux系统 工具:PL/SQL DEVELOPER
第一步:查看表空间的名字及文件所在位置:
select tablespace_name, file_id, file_name,
round(bytes/(1024*1024),0) total_space
from dba_data_files
order by tablespace_name
第二步:增大所需表空间大小:
alter database datafile '表空间位置'resize 新的尺寸
例如:
alter database datafile '\oracle\o ...
archive log 日志已满ORA-00257: archiver error. Connect internal only, until freed 错误的处理方法1. 用sys用户登录 sqlplus sys/pass@tt as sysdba2. 看看archiv log所在位置SQL> show parameter log_archive_dest;NAME ...
create tablespace surface_dataloggingdatafile '/u01/app/oracle/oradata/orcl/surface_data.dbf'size 50mautoextend onnext 50m maxsize 20480mextent management local;
针对test用户修改默认表空间。
alter user test default tablespace surface_data;
1. su - oracle
2. export ORACLE_SID=testdb (切换数据库实例)
3. sqlplus /nolog
4. conn /as sysdba
5. startup (启动数据库)
6. exit(退出sql模式)
7. lsnrctl start(启动监听器)
8. emctl start dbconsole(启动em控制台,可不启动)
连接vncserver使用dbca新建数据库实例报错
报错:Xlib:connection to ":1.0" refused by server
1. 用root登录linux,启动vnc服务
2. 根据vnc起来的端口,设置export DISPLAY=localhost:1(1表示vnc在第一个tty上启动的)。
3. 执行xhost +,并且提示“access control disabled, clients can connect from any host”才正确
1. 查看当前用户的缺省表空间
select username,default_tablespace from user_users;
2. 查看当前用户的角色
select * from user_role_privs;
3. 查看当前用户的系统权限和表级权限
select * from user_sys_privs;
select * from user_tab_privs;
4. 查看用户下的所有表
select * from user_tables;
oracle将一个用户的某个表所有权限放开给另一个用户
现象描述:
登录oracle11g
提示ERROR:ORA-28002:the password will expire within 1 days.
告警信息:
ERROR:ORA-28002:the password will expire within 1 days.
原因分析:select * from dba_profiles s where s.profile='DEFAULT' AND resource_name='PASSWORD_LIMIT'
oracle11g中默认在default概要文件中设置了"PASSWORD_LIFE_TIME=180天 ...
一、创建逻辑目录,该命令不会在操作系统创建真正的目录,最好以system等管理员创建。create directory dpdata1 as 'd:\test\dump';二、查看管理理员目录(同时查看操作系统是否存在,因为Oracle并不关心该目录是否存在,如果不存在,则出错)select * from dba_directories;三、给scott用户赋予在指定目录的操作权限,最好以system等管理员赋予。grant read,write on directory dpdata1 to scott;四、导出数据1)按用户导expdp scott/tiger@orcl schemas= ...
JIRA6的安装与破解
- 博客分类:
- JIRA
1 JIRA简介
JIRA 是澳大利亚 Atlassian 公司开发的一款优秀的问题跟踪管理软件工具,可以对各种类型的问题进行跟踪管理,包括缺陷、任务、需求、改进等。JIRA采用J2EE技术,能够跨平台部署。它正被广泛的开源软件组 ...
windows如何安装配置Ldap
- 博客分类:
- LDAP
上网找了几篇安装Ldap的文档,装装卸卸好多次,终于经过几个组合成功了- -!这里列出来我的整个操作步骤,供参考
1. 下载windows下OpenLdap_x64的安装包及LdapBrowser282的安装包
2. 安装OpenLdap,全部采用默认的选项,数据那里选择BDB。
3. 安装完成后,修改slapd.conf(粗体部分为修改后内容)
database bdbsuffix "dc=example,dc=com"rootdn "cn=Manager,dc=example,dc=com"
# Cleartext pass ...
LDAP安装完成后,需要从命令行cd到安装目录后启动slapd -d 1
报错: config_build_attrs: error 21 on olcConfigFile value #0时
解决办法:
解决方法(一): slapd.exe -d 1 -f ./slapd.conf 加上 -f 和你的配置文件路径
解决方法(二): 安装目录下面有个 run 目录, run 目录下面有个 run.cmd 直接双击运行;
我用了第一个,好用,启动起来了
postgresql默认情况下,远程访问不能成功,如果需要允许远程访问,需要修改两个配置文件,说明如下:
1.postgresql.conf
将该文件中的listen_addresses项值设定为“*”,在9.0 Windows版中,该项配置已经是“*”无需修改。
2.pg_hba.conf
在该配置文件的host all all 127.0.0.1/32 md5行下添加以下配置,或者直接将这一行修改为以下配置
host all all 0.0.0.0/0 md5
如果不希望允许所有IP远程访问,则可以将上述配置项中的0.0.0.0设定为特定的IP值。