码迷,mamicode.com
首页 >  
搜索关键字:sqlserver 和oracle    ( 7379个结果
SQLServer中获取所有数据库名、表名、字段名以及描述
1. 获取所有的数据库的信息 SELECT * FROM MASTER.DBO.SYSDATABASES 2. 获取所有数据表名 XTYPE U 代表用户创建的表 S 代表系统表 SELECT * FROM sys.SYSOBJECTS WHERE XTYPE='U' 3. 查看某表内的所有列 SE ...
分类:数据库   时间:2020-02-18 20:46:45    阅读次数:122
Sql注入之postgresql
Sql注入之Postgresql 介绍 Postgresql是一款中小型数据库,经常与PHP一起使用。 数据库判断 返回正常即为Postgresql数据库 常用注入语句 数据库版本 判断当前用户 判断字段数 联合注入 用法和oracle相似 数据库版本信息 用户权限 数据库名称 表名 列名 查看数据 ...
分类:数据库   时间:2020-02-18 16:29:13    阅读次数:113
Oracle的安装(安装Windows XP和Oracle)
1、虚拟机的安装 (1)新建一台虚拟机: 选择自定义然后下一步。 (2)虚拟机硬件兼容性: 选5,然后下一步。 (3)稍后安装操作系统: (4)操作系统类型(根据安装的操作系统类型自主选择): (5)修改名字、选择路径: (6)选择内存: (7)网络类型: (8)IO控制类型: (9)磁盘类型: ( ...
分类:数据库   时间:2020-02-18 15:11:00    阅读次数:114
It is possible and safe to monitor a table DML history on sqlserver
He is my test step: In a test enviroument, I make a table "test"/ demo table:create table test ( a nvharchar(100)); trigger record table:CREATE TABLE ...
分类:数据库   时间:2020-02-16 21:08:08    阅读次数:128
EMC networker nmm can restore and recover sqlserver as different name to different location
EMC networker nmm can restore and recover sqlserver as different name to different location That is true. However, we should select this oprtions when ...
分类:数据库   时间:2020-02-16 20:55:02    阅读次数:107
An enhance script to check partition tables under all schemas in sqlserver
Simple step for EMC NW & NMM (1) disable WINDOWS UAC (reboot)(2) SET windows domain user AS sysadmin(3) modify hosts(4) install software (NW , NMM) (r ...
分类:数据库   时间:2020-02-16 20:54:09    阅读次数:86
I fullly understand why can not set "auto commit off" in sqlserver
This is xxxxx Because MES guy mistaken , the data was wrong and made system error then. After that I plan to set "autocommit off" in sqlserver as defa ...
分类:数据库   时间:2020-02-16 20:26:25    阅读次数:111
How to setup backup by using EMC NW + EMC NMM for sqlserver failover cluster (not always on)
As we said, sqlsever fail over cluster is perviously version of always on. The HA was guarenteed by OS not database. Therefor, we can not use windows ...
分类:数据库   时间:2020-02-16 20:20:37    阅读次数:110
To be contine ,NW NMM backup sqlserver failed.
Last time, we talk about separate under one cluster backup into two diffetent AG backup. Does it works ? How is it ? Let we it this time: Unfortunatel ...
分类:数据库   时间:2020-02-16 17:56:16    阅读次数:109
SqlServer死锁时使用nolock、option(force order)优化
前两天突然收到运维说某个项目经常死锁,客户反馈操作很卡,我们公司是做的wms(仓储物流管理)系统,卡起来无疑会导致客户的发货效率降低,所以我马上进到服务器检查了死锁情况,发现在下午2点到4点大概每10分钟一个死锁。 我检查是否是性能到瓶颈了导致死锁卡顿,但是并没有看到性能有太大压力,执行缓慢的语句拿 ...
分类:数据库   时间:2020-02-15 20:30:27    阅读次数:127
7379条   上一页 1 ... 36 37 38 39 40 ... 738 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!