IF exists (select * from syscolumns where name='字段名' and id=object_id('表名')) begin select '已存在,不需添加!' end ELSE begin ALTER TABLE dbo.MQ_PhysicalRoomAn... ...
分类:
数据库 时间:
2018-10-17 14:29:42
阅读次数:
965
if exists(select * from syscolumns where id=object_id('表名') and name='列名') begin alter table 表名 drop column 列名 ; end alter table 表名 add 列名 int identit... ...
分类:
数据库 时间:
2018-10-16 13:56:03
阅读次数:
163
if not exists(select * from syscolumns where id=object_id('REMOTEDETECTION_2018')) begin SELECT * INTO REMOTEDETECTION_2018 FROM REMOTEDETECTION where ...
分类:
数据库 时间:
2018-10-12 14:12:33
阅读次数:
206
1: select sum(c.row_count) as datacount from sys.indexes a , sys.objects b , sys.dm_db_partition_stats c where a.[object_id] = b.[object_id] AND b.[ob ...
分类:
数据库 时间:
2018-10-10 15:29:01
阅读次数:
331
select object_id from dba_objects where object_name=UPPER('临时表表名');select sid from v$lock where id1=91037; //91037是上一步查询出的结果select serial# from v$sess... ...
分类:
其他好文 时间:
2018-10-02 22:13:11
阅读次数:
146
先在models中建几张表结构: 数据库迁移后录入数据: 前端发送axios请求: ...
分类:
其他好文 时间:
2018-09-26 22:10:46
阅读次数:
256
作为一线的dba,经常会遇到批量业务或联机业务sql中统计信息不准导致的执行计划异常的问题。虽较为常见,但还是记录一下,作为SQL执行异常专题的开篇一章。要了解执行计划,首先要理解统计信息,因为ORACLE主要是基于表的统计信息计算表访问、过滤、表关联的消耗,从而生成最终的执行计划,如果表的统计信息 ...
分类:
数据库 时间:
2018-09-18 22:37:30
阅读次数:
200
1.首先需要sys或者system权限操作 2.查询需要更改的表的ID select object_id from all_objects where owner = '用户名' and object_name = 'tableName'; 注:表名需要大写 3.通过ID查询出该表所有字段的顺序 s ...
分类:
数据库 时间:
2018-09-12 20:02:47
阅读次数:
176
原始数据: 期望数据: 1 IF OBJECT_ID('temp_20170701','u') IS NOT NULL DROP TABLE temp_20170701 2 3 CREATE TABLE temp_20170701 ( 4 ID INT PRIMARY KEY IDENTITY(1, ...
分类:
数据库 时间:
2018-09-02 12:34:16
阅读次数:
196
from django.db import models from django.contrib.contenttypes.models import ContentType from django.contrib.contenttypes.fields import GenericRelation... ...
分类:
其他好文 时间:
2018-09-02 00:09:25
阅读次数:
207