instance / database / schema / object

login / user / schema (dbo)

sequence

Collation

PSM: Both Instance and DB need case insensitive

Windchill: Both Instance and DB as SQL_Latin1_General_CP1_CS_AS (Since 2012, it is Latin1_General_100_CS_AS_SC)

Cognos: DBs need case insensitive, can share same instance as Windchill

Upgrade:

About Microsoft SQL Server Collation settings in Windchill

  • Instance/Server Collation
  • Database Collation

Instance/database

  • Instance
  1. “Empty” means default Instance Name of MSSQLSERVER
  1. Can get from Service
  1. Or run query below –again NULL means default of MSSQLSERVER

SELECT SERVERPROPERTY('InstanceName')

Login/user/schema

  • Here Instance > Security > login show the Instance Login
  1. Login user can access Instance/Server, but cannot access Database/Tables
  • Database User who map to a Instance Login and define a Default Schema
  • Why SQL select * from wind.wtuser does not work (small case of wtuser)?

wtuser needs to be WTUser

  • Why SQL select * from  WTUser does not work (without wind.)?

The user’s default schema is not wind

  • What is the default schema?
    dbo

Transaction log

  • Windchill down due to database full
  1. Option #1:
  1. Reason #2:

Sequence

  • Sample  create_QueueEntry_Table.sql
  1. Create table for sequence

CREATE TABLE
entryNumber_seq (dummy
CHAR(1), value BIGINT      IDENTITY(1,1))

go

  1. Create the procedure to get/generate the
    sequence

CREATE PROCEDURE
wt_get_next_sequence_entryNumber

AS

INSERT entryNumber_seq (dummy) VALUES ('x')

RETURN SCOPE_IDENTITY()

go

Note: the
procedure changes to as below since 10.1, and then leads to CS128703

CREATE PROCEDURE
wt_get_next_sequence_entryNumber

@returnValue BIGINT OUTPUT

AS

INSERT entryNumber_seq (dummy)
VALUES ('x')

SELECT @returnValue = SCOPE_IDENTITY()

go

  1. Retrieve the sequence

DECLARE  @return_value int

EXEC     @return_value = [wind].[wt_get_next_sequence_entryNumber]

SELECT   'Return Value' = @return_value

GO

  • How to break the IDENTITY temporarily for some
    reason, e.g. configure to a BIG value to avoid ID confliction?
  1. Two methods

SET IDENTITY_INSERT
wind.entryNumber_seq ON

Insert into
wind.entryNumber_seq(dummy, value) values ('x', 99999)

SET IDENTITY_INSERT
wind.entryNumber_seq OFF

GO

OR

DBCC
CHECKIDENT('entryNumber_seq', RESEED, 100014)

GO

  • How to verify sequences, like “select * from
    user_sequences” in Oracle?

SELECT TABLE_NAME,IDENT_INCR(TABLE_NAME) AS IDENT_INCR, IDENT_CURRENT(TABLE_NAME) as IDENT_CURRENT

FROM INFORMATION_SCHEMA.TABLES

where IDENT_CURRENT(TABLE_NAME)is not null

order by TABLE_NAME;

Microsoft SQL Server的更多相关文章

  1. Microsoft SQL Server中的事务与并发详解

    本篇索引: 1.事务 2.锁定和阻塞 3.隔离级别 4.死锁 一.事务 1.1 事务的概念 事务是作为单个工作单元而执行的一系列操作,比如查询和修改数据等. 事务是数据库并发控制的基本单位,一条或者一 ...

  2. Microsoft SQL Server 2008 R2 安装卸载

    问题 问题1 标题: Microsoft SQL Server 2008 R2 安装程序 ------------------------------ 出现以下错误: Could not open k ...

  3. Sql Server系列:Microsoft SQL Server Management Studio模板资源管理器

    模板资源管理器是Microsoft SQL Server Management Studio的一个组件,可以用来SQL代码模板,使用模板提供的代码,省去每次都要输入基本代码的工作. 使用模板资源管理器 ...

  4. 未能加载包“Microsoft SQL Server Data Tools”

    直接在vs2013里的App_Data目录创建数据库,在服务器资源管理器中查看时报错: 未能加载包“Microsoft SQL Server Data Tools” 英文: The 'Microsof ...

  5. SQL SERVER错误:已超过了锁请求超时时段。 (Microsoft SQL Server,错误: 1222)

    在SSMS(Microsoft SQL Server Management Studio)里面,查看数据库对应的表的时候,会遇到"Lock Request time out period e ...

  6. Cannot set a credential for principal 'sa'. (Microsoft SQL Server,错误: 15535)

    在SQL SERVER 2008上上禁用sa登录时,遇到下面错误:"Cannot set a credential for principal 'sa'. (Microsoft SQL Se ...

  7. Microsoft SQL Server 2005 Service fails to start

    今天碰到一雷死人的事情,在Windows Server 2012 R2上安装SQL SERVER 2005标准版过程中一直遇到"The SQL Server service failed t ...

  8. Microsoft SQL Server 2008 R2官方中文版(SQL2008下载).rar

    Microsoft SQL Server 2008 R2官方中文版(SQL2008下载).rar

  9. 无法打开物理文件xxx.mdf操作系统错误 5:“5(拒绝访问。)” (Microsoft SQL Server,错误: 5120)的解决方法

    无法打开物理文件xxx.mdf操作系统错误 5:“5(拒绝访问.)” (Microsoft SQL Server,错误: 5120)的解决方法   问题描述: 在附加数据库到sql server时,附 ...

  10. 无法删除服务器 'old_server_name',因为该服务器用作复制过程中的发布服务器。 (Microsoft SQL Server,错误: 20582)

    无法删除服务器 'old_server_name',因为该服务器用作复制过程中的发布服务器. (Microsoft SQL Server,错误: 20582) 2013-01-05 15:02 478 ...

随机推荐

  1. 关于 android 中 postDelayed方法的讲解

    代码如下: 这是一种可以创建多线程消息的函数 使用方法: 1,首先创建一个Handler对象 Handler handler=new Handler(); 2,然后创建一个Runnable对象 Run ...

  2. 对table的tr使用display:block显示colspan失效问题的解决

    qqqq <table> <tr> <td id="qqq" colspan="3" style="display:no ...

  3. 2016年11月17日 星期四 --出埃及记 Exodus 20:8

    2016年11月17日 星期四 --出埃及记 Exodus 20:8 "Remember the Sabbath day by keeping it holy.当记念安息日,守为圣日.

  4. 3.求m+mm+mmm+…+m…m(n个)的和,其中m为1~9之间的整数。 例如,当m=3、n=4时,求3+33+333+3333的和。

    package a; public class QiuHe { private int m; private int n; public int getM() { return m; } public ...

  5. 【转】VB中应用DDE

    动态数据交换(dde)是windows应用程序间通讯的基本方法之一,在动态数据交换的过程中,提供数据和服务的应用程序称为服务器,请求数据或服务的应用程序则称为客户. dde交谈是由客户程序启动的.如果 ...

  6. 《安全智库》:48H急速夺旗大战通关writeup(通关策略)

    作者:ByStudent   题目名字 题目分值 地址 MallBuilder2 350 mall.anquanbao.com.cn MallBuilder1 200 mall.anquanbao.c ...

  7. Ubuntu升级没有声音的解决方法

    自从安装U14.04LTS版本后,每次开机都会弹出update窗,以前因为网络速度慢没更新成功过,这回环境允许就尝试了下这个过程,很顺利,可更新后没声音了,找了N中方法来解决,像更改配置文件/etc/ ...

  8. EditPlus添加到右键菜单

    1.Alt+R 键打开“运行” 2.“运行”中输入:regedit 打开注册表    (1.在 "我的电脑HKEY_CLASSES_ROOT*" 下新建项 shell: (2.在 ...

  9. js判断ie11浏览器

    var isIE11 = (/Trident\/7\./).test(navigator.userAgent);

  10. JSP学习——原理

    JSP全称是Java Server Pages,它和servle技术一样,都是SUN公司定义的一种用于开发动态web资源的技术.   JSP这门技术的最大的特点在于,写jsp就像在写html,但它相比 ...