在数据库中有一个系统表sysobjects,里面存储了数据库各个对象的信息。可以查询下看看结果。可以看出每个对象都有一个ID,这个表存储了表,存储过程,触发器,视图等相关信息。注意:字段没有。object_id就是根据对象名称返回该对象的id.object_name是根据对象id返回对象名称.sel...
分类:
数据库 时间:
2015-07-09 00:17:46
阅读次数:
197
createtablet2asselect*fromdba_objects;建索引:createindexidx_t2ont2(object_id);2.收集T2的表所有列和表上所有索引的统计信息:execdbms_stats.gather_table_stats(ownname=>‘SYS‘,tabname=>‘T2‘,estimate_percent=>100,cascade=>true,degree=>4);degree表..
分类:
数据库 时间:
2015-07-07 19:51:52
阅读次数:
149
GOIF EXISTS(SELECT 1 FROM sysobjects WHERE id=OBJECT_ID('usp_p_delDBLog'))BEGIN DROP PROC dbo.usp_p_delDBLogENDGOCREATE PROC usp_p_delDBLog( @DBLogSis...
分类:
数据库 时间:
2015-07-07 10:52:57
阅读次数:
161
id类型数据类型: 1.可以用来定义变量 2.可以用来当作参数 3.可以用来当作返回值 id类型是一个万能指针(可以保持任何对象的地址)id相当于NSObject *id的本质typedef struct objc_object *id;id是一个动态类型,在运行时才确定id的真实类型id类...
分类:
其他好文 时间:
2015-07-01 20:05:58
阅读次数:
109
从网上找到了下面一段代码:declare @Pk varchar(100);select @Pk=Name from sysobjects where Parent_Obj=OBJECT_ID('表名') and xtype='PK';if @Pk is not nullbegin exec(...
分类:
数据库 时间:
2015-06-30 17:44:46
阅读次数:
154
if not object_id('Tempdb..#T') is null drop table #TGoCreate table #T([ID] int,[Name] nvarchar(1),[Memo] nvarchar(2))Insert #Tselect 1,N'A',N'A1' u...
分类:
其他好文 时间:
2015-06-29 14:33:20
阅读次数:
92
if DB_ID('testdb') is not null -- 如果这个数据库已经存在了drop database testdb;create database testdb;if OBJECT_ID('dbo.user','u') is not nulldrop table dbo.user;...
分类:
数据库 时间:
2015-06-28 07:33:22
阅读次数:
213
JS:
/**
* 显示提示框
* @param {Object} id
*/
function showModel(content){
$(".md-content").html(content) ;
$("#modalCustom").addClass("md-show");
t = setTimeout('hideModel("modalCustom")', 3000);
}...
分类:
移动开发 时间:
2015-06-27 09:56:42
阅读次数:
171
-----正常执行计划
set autotrace traceonly
set linesize 1000
select /*+index(t idx_object_id)*/ * from t where object_id=19;
Execution Plan
----------------------------------------------------------...
分类:
数据库 时间:
2015-06-25 23:06:32
阅读次数:
433
--找出所有被锁的对象,定位出哪个回话占用select l.session_id,o.owner,o.object_namefrom v$locked_object l,dba_objects owhere l.object_id=o.object_id;--所有导致锁的sessionselect ...
分类:
系统相关 时间:
2015-06-25 18:56:47
阅读次数:
141