E-COM-NET
首页
在线工具
Layui镜像站
SUI文档
联系我们
推荐频道
Java
PHP
C++
C
C#
Python
Ruby
go语言
Scala
Servlet
Vue
MySQL
NoSQL
Redis
CSS
Oracle
SQL Server
DB2
HBase
Http
HTML5
Spring
Ajax
Jquery
JavaScript
Json
XML
NodeJs
mybatis
Hibernate
算法
设计模式
shell
数据结构
大数据
JS
消息中间件
正则表达式
Tomcat
SQL
Nginx
Shiro
Maven
Linux
OBJECT_ID
sysobjects syscolumns和SysTypes笔记
常规用法:select * from sysobjects where id=
object_id
('TableName') and type = 'U' 查找表TableName的信息 更多参考
·
2015-10-31 10:40
object
重建索引
declare id int set id=
object_id
(<table_name, sysname, >) dbcc showcontig(@table_id)
·
2015-10-31 10:11
索引
储存过程
创建存储过程 if exists (select * from sysobjects where id=
object_id
('prGetMenu') and objectproperty (id,
·
2015-10-31 10:18
过程
取与指定时间最近的数据集
if
object_id
('[tabletest]') is not null drop table [tbl] create table [tabletest]([DATime] datetime
·
2015-10-31 10:39
时间
sqlserver中判断表或临时表是否存在
1、判断数据表是否存在 方法一: use yourdb;go if
object_id
(N'tablename',N'U') is not nullprint '存在'else print '
·
2015-10-31 10:20
sqlserver
SQL脚本获取指定数据库的所有用户表记录数
set nocount onif
object_id
(N'tempdb.db.
·
2015-10-31 10:36
sql
把指定表中的列添加到目标表中不包含的列
newDB VARCHAR(20), @oldtable VARCHAR(50), @newtable VARCHAR(50) ) AS EXEC ('USE '+ @newDB+'') IF
object_id
·
2015-10-31 10:05
目标
sql 计算工作时间的函数
if exists (select * from dbo.sysobjects where id =
object_id
(N'[tb_worktime]') and OBJECTPROPERTY(id,
·
2015-10-31 10:12
sql
05. 取SQL分组中的某几行数据
测试数据: if
OBJECT_ID
('testGroup') is not null drop table testGroup GO create table testGroup ( ID
·
2015-10-31 10:33
sql
06. 父子节点(树)遍历写法小结
测试数据: if
OBJECT_ID
('city') is not null
·
2015-10-31 10:33
遍历
用触发器即时同步两个表的实例
数据库名:test --创建测试表,不能用标识列做主键,因为不能进行正常更新--在远程主机上建表if exists (select * from dbo.sysobjects where id =
object_id
·
2015-10-31 10:38
触发器
几种数据库备份方法很方便
if exists (select * from dbo.sysobjects where id =
object_id
(N'[dbo].
·
2015-10-31 10:40
数据库备份
sql 只包含指定数据和包含其他数据的统计
USE wms;--> 测试数据:#taIF
OBJECT_ID
('TEMPDB.DBO.
·
2015-10-31 10:17
sql
网上删除所有数据文件的恢复情况
OPEN_MODE ---------- READ WRITE --创建測试表 SQL> create table zlm.test2 as select
object_id
·
2015-10-31 10:46
数据文件
sql 字符+数值 混合排序
if
object_id
('[tb]') is not null drop table [tb]gocreate table [tb]([col] varchar(3)) insert [tb]select
·
2015-10-31 10:21
sql
SQL存储过程示例
OutletID 主键,自增) (1).创建存储过程 if exists (select * from dbo.sysobjects where id =
object_id
·
2015-10-31 10:57
存储过程
sql server2000-创建表和修改表
USE ClassNorthwind IF
OBJECT_ID
( ' dbo.Employees ' ) IS NOT  
·
2015-10-31 09:08
SQL Server
SQL语法基础
--创建表的同时创建约束 use tempdb if
Object_ID
('testDB') is not Null drop table testDB; CREATE TABLE testDB
·
2015-10-31 09:57
sql
化解字符串不能超过8000的方法及交叉表的处理
/*-- 数据测试环境 --*/if exists (select * from dbo.sysobjects where id =
object_id
(N'[tb]') and OBJECTPROPERTY
·
2015-10-31 09:30
字符串
SqlServer经典行转列 讨论
use CubeDemo; go SET NOCOUNT ON /* 销售模块 */ if
OBJECT_ID
(N ' BusinessCommon_SaleModule ' ,N
·
2015-10-31 09:45
sqlserver
C#执行含事务的存储过程
存储过程如下: USE[TestDB]GOIF EXISTS (SELECT * FROM dbo.sysobjects WHERE id =
OBJECT_ID
(N'[dbo].
·
2015-10-31 09:45
存储过程
将全角字符转化为半角字符--转自邹建
exists (select * from dbo.sysobjects where id =
object_id
·
2015-10-31 09:34
字符
将表中的数据存储为xml文档(Sql 2000)
if exists (select * from dbo.sysobjects where id =
object_id
·
2015-10-31 09:33
数据存储
Microsoft SQL Server 存储过程举例
if (
object_id
('InvHoldToDPS', 'P') is not null) drop proc InvHoldToDPS GO -- craete new
·
2015-10-31 09:45
SQL Server
解析SQL SERVER 数据页面头部结构
解析数据页面头部结构 if
object_id
('test') is not null drop table test go create table
·
2015-10-31 09:05
SQL Server
语句删除数据库表中有默认字段值的字段
--查出字段约束名 select b.name from syscolumns a,sysobjects b where a.id=
object_id
('Edu_Discount') and
·
2015-10-31 09:48
删除数据
数据库里阻塞和死锁情况 看那里死锁的存储过程
网上找的,看那里死锁的存储过程 if exists (select * from dbo.sysobjects where id =
object_id
(N'[dbo].
·
2015-10-31 09:09
存储过程
SQL SERVER 本地查询更新操作远程数据库
--PK select * from sys.key_constraints where
object_id
=
OBJECT_ID
('TB') --FK select * from sys.foreign_keys
·
2015-10-31 09:17
SQL Server
动态列头(时间字段)
if
object_id
('tempdb..
·
2015-10-31 09:46
时间
SQL查询表和存储过程创建修改日期
查询建立时间 -- 表 select * from sysobjects where id =
object_id
·
2015-10-31 09:44
存储过程
sql中添加唯一索引(非主键)
if
OBJECT_ID
('tempdb..
·
2015-10-31 09:06
sql
sys.system_objects (Transact-SQL)
object_id
int
·
2015-10-31 09:46
object
不完美的分页存储过程
--这是一个通用的分页存储过程if
object_id
('bin','p') is not nulldrop proc bingocreate proc bin@cupage int=1,@count
·
2015-10-31 09:07
存储过程
08. 删除重复&海量数据
测试数据: if
OBJECT_ID
('duplicate_all') is not null drop table duplicate_all GO create table duplicate_all
·
2015-10-31 09:31
海量数据
查看SQL Server中某数据库下每个表占用的空间大小
nbsp;not exists (select * from dbo.sysobjects where id =
object_id
·
2015-10-31 09:37
SQL Server
SQL Server 2005 中的树形数据处理示例
创建测试数据 if exists (select * from dbo.sysobjects where id =
object_id
·
2015-10-31 09:37
sql server 2005
Merge的山寨版“联机帮助”
IF NOT
OBJECT_ID
('Demo_AllProducts') IS NULL DROP TABLE Demo_AllProducts GO CREATE TABLE Demo_AllProducts
·
2015-10-31 09:39
merge
Ruby中的symbol ":" 【一】
,比如字符串的名字,标识符的名字,创建一个 Symbol 对象的方法是在名字或者字符串前面加上冒号: 在 Ruby 中每一个对象都有唯一的对象标识符(Object Identifier),可以通过
object_id
·
2015-10-31 09:08
Ruby
sql行列旋转
一,行转列 先建立测试数据 if
OBJECT_ID
('week_income') is not null drop table week_income go create table
·
2015-10-31 08:15
sql
定义局部变量时,字符串不能超过8000的方法
语句的方法处理数据时,处理语句超长,无法处理的问题 /*-- 数据测试环境 --*/if exists (select * from dbo.sysobjects where id =
object_id
·
2015-10-31 08:44
局部变量
MSSQL将多行单列变一行一列并用指定分隔符分隔,模拟Mysql中的group_concat
-- 将多行记录(只能一个列)用指定分隔符分隔 IF(
OBJECT_ID
('sp_RowsChangeClosBySplit',N'P') IS NOT NULL) DROP PROC sp_RowsChangeClosBySplit
·
2015-10-31 08:46
group_concat
第三篇:使用Visual Studio 2008实现基本的页面交互
Code if exists (select * from sysobjects where id =
OBJECT_ID
·
2015-10-31 08:27
2008
SQLServer和Oracle常用函数对比
if exists ( select * from syscolumns where id =
object_id
·
2015-10-31 08:01
sqlserver
生成交叉表的简单通用存储过程
exists ( select * from dbo.sysobjects where id =
object_id
·
2015-10-31 08:34
存储过程
FastSpring学习笔记六(表关联)
exists ( select * from dbo.sysobjects where id =
object_id
·
2015-10-31 08:52
spring
FastSpring学习笔记三(创建新闻发布信息的相关类)
exists ( select * from dbo.sysobjects where id =
object_id
·
2015-10-31 08:51
spring
OBJECT_ID
(Transact-Sql)
使用
OBJECT_ID
不能查询非架构范围内的对象(如 DDL 触发器)。对于在 sys.objects 目录视图中找不到的对象,需要通过查询适当的目录视图来获取该对象的标识号。
·
2015-10-31 08:23
object
PowerDesigner批量生成日期型、中文字符型、数字型测试数据
基本测试表如下: View Code if exists (select 1 from sysobjects where id =
object_id
·
2015-10-31 08:46
powerDesigner
输入表名生成插入、更新存储过程和调用该存储过程的字符串
Code IF
OBJECT_ID
('F_GET_PROC') IS NOT NULL DROP FUNCTION F_GET_PROC
·
2015-10-30 18:55
存储过程
SQL学习笔记一之COALESCE函数
语法 COALESCE ( expression [ ,n ] ) -- 创建测试表 IF
OBJECT_ID
·
2015-10-30 18:55
COALESCE
上一页
14
15
16
17
18
19
20
21
下一页
按字母分类:
A
B
C
D
E
F
G
H
I
J
K
L
M
N
O
P
Q
R
S
T
U
V
W
X
Y
Z
其他