MSSQL
文章平均质量分 53
daxstudio
这个作者很懒,什么都没留下…
展开
-
Select 语句 oracle /MSSQL 对比
MSSQL 语法 SELECT [ALL | DISTINCT] {select_list} [INTO [owner.]table] [FROM [owner.]{table翻译 2012-04-12 15:56:30 · 413 阅读 · 0 评论 -
Arithmetic Operators 算术操作符 oacle/mssql 对比
Microsoft SQL Server or Sybase Same in Both Adaptive Server翻译 2012-04-18 09:37:59 · 479 阅读 · 0 评论 -
Comparison 比较操作符 oracle /mssql 对比
Same in Both SQL Server Server Operator Databases Only Oracle Only Equal to =翻译 2012-04-18 09:34:40 · 403 阅读 · 0 评论 -
String Operators 字符串 oracle/mssql 对比
Microsoft SQL Server or Sybase Same in Both Adaptive Server翻译 2012-04-18 09:39:56 · 591 阅读 · 0 评论 -
UPDATE 语句 ORACLE /MSSQL 对比
Microsoft SQL Server Oracle Syntax: Syntax:UPDATE [[database.]owner.] {table翻译 2012-04-18 09:22:15 · 266 阅读 · 0 评论 -
sql server2005怎么改为混合验证模式
安装过程中,SQL Server 数据库引擎设置为 Windows 身份验证模式或 SQL Server 和 Windows 身份验证模式。本主题介绍如何在安装后更改安全模式。如果在安装过程中选择“Windows 身份验证模式”,则 sa 登录将被禁用。如果稍后将身份验证模式更改为“SQL Server 和 Windows 身份验证模式”,则 sa 登录仍处于禁用状态。若要启用 sa 登录帐户,请原创 2012-04-29 23:32:53 · 660 阅读 · 0 评论 -
SQL server 语句新建用户、对用户授权、删除用户实例
USE mydbGO--1. 新建测试用户--1.1 添加登录用户和密码EXEC sp_addlogin N'tony','123'--1.2 使其成为当前数据库的合法用户EXEC sp_grantdbaccess N'tony' --2.设置操作授权--2.1 授予对自己数据库的所有权限EXEC sp_addrolemember N'db_owner',原创 2012-04-28 21:57:45 · 6128 阅读 · 0 评论 -
DELETE 语句 oracle /mssql 对比
Microsoft SQL Server Oracle Syntax: Syntax:翻译 2012-04-18 09:28:52 · 379 阅读 · 0 评论 -
sql server 错误: 17182 解决办法
Sql server 2005进行设置后,服务就启动不了了,后来查看日志,有这样一段话: 2008-09-05 08:40:17.82 服务器 A self-generated certificate was successfully loaded for encryption.2008-09-05 08:40:17.82 服务器 错误: 17182,严原创 2012-04-25 18:13:19 · 7314 阅读 · 0 评论 -
MSSQLSERVER 批量 修改 字段 大写
最近项目使用ORACLE , 和 MSSQLSERVER , 使用到oracle transparent gate 连接配置连接成功后,可以从oracle 中直接处理SQLSERVER 中的数据 ,但使用SQL语句时,字段需要“”,字段名称大小写需要一致,有些麻烦,如果SQLSERVER字段全部为大写,不需要“”,需要将SQLSERVER中的字段批量修改为大写。 DECLARE c_d原创 2011-09-07 22:13:23 · 574 阅读 · 0 评论 -
select 语句 没有 FROM oracle /MSSQL 对比
MSSQL :select gatedate() ORACLE :select sysdate from dual ; oracle 不支持select 语句没有FROM 从句 可以使用dual表原创 2012-04-13 12:35:43 · 624 阅读 · 0 评论 -
列别名Column Aliases oracle /mssql
Microsoft SQL Server SELECT employees=col1 FROM tab1e Oracle syntax: SELECT col1 employees FROM tab1e 注意: Microsoft SQL Server 也支持翻译 2012-04-13 12:51:05 · 549 阅读 · 0 评论 -
INSERT 语句 ORACLE / MSSQL
Microsoft SQL Server Oracle Syntax: Syntax: INSERT [INTO]翻译 2012-04-13 13:02:48 · 443 阅读 · 0 评论 -
select into 语句 ORACLE / MSSQL对比
SQL Server SELECT INTO statement can insert rows into a table. This construct, which is part SELECT and part INSERT, is not supported by ANSI. Replace thes转载 2012-04-13 12:39:00 · 466 阅读 · 0 评论 -
链接服务器的 OLE DB 访问接口 "SQLNCLI" 无法启动分布式事务 OLE DB 提供程序 'SQLOLEDB' 无法启动分布式事务
一、 问题现象在执行分布式事务时,在sql server 2005下收到如下错误:链接服务器"xxxxxxx"的 OLE DB 访问接口 "SQLNCLI" 返回了消息 "没有活动事务。"。消息 7391,级别 16,状态 2,过程 xxxxx,第 16 行无法执行该操作,因为链接服务器 "xxxxx" 的 OLE DB 访问接口 "SQLNCLI" 无法启动分布式事务。在sq原创 2012-04-22 11:42:34 · 11229 阅读 · 0 评论