码迷,mamicode.com
首页 >  
搜索关键字:__unused    ( 162个结果
SQL Server中如何识别、查找未使用的索引(unused indexes)
在SQL Server中,索引是优化SQL性能的一大法宝。但是由于各种原因,索引会被当做“银弹”滥用,一方面有些开发人员(甚至是部分数据库管理员)有一些陋习,不管三七二十一,总是根据所谓的"感觉"或“经验”先增加一些索引,而不管这些索引是否未被使用或是否合理。另外一方面在数据库的生命周期中,需求总是... ...
分类:数据库   时间:2018-05-23 02:03:08    阅读次数:278
unused function warning message
這篇的對象是 static function, static function 若沒有其它 function 去存取的話, 在 compile 時,會發生 unused error, 可以在 function 前加上 __attribute__((unused)) 避免出現 unused error ...
分类:其他好文   时间:2018-05-03 19:56:27    阅读次数:524
yum all installed dependent packages while removing a package in centos 7?
how to remove all installed dependent packages while removing a package in centos 7? yum autoremove will remove the unused dependencies To remove a pa ...
分类:其他好文   时间:2018-04-29 20:31:59    阅读次数:173
linux6.x启动流程
1.运行级别介绍0-halt(DoNOTsetinitdefaulttothis)系统直接关机1-Singleusermode单用户模式2-Multiuser,withoutNFS(Thesameas3,ifyoudonothavenetworking)类似3级别,但无NFS服务3-Fullmultiusermode含网路功能的纯文本模式4-unused系统保留功能5-X11加载使用xwindow
分类:系统相关   时间:2018-04-03 11:24:40    阅读次数:169
Qt ------ Q_UNUSED
Q_UNUSED(name) Indicates to the compiler that the parameter with the specified name is not used in the body of a function. This can be used to suppres ...
分类:其他好文   时间:2018-01-23 11:00:19    阅读次数:455
MySQL注意点
以下针对MySQL5.7(持续更新中): If you do not use columns from all tables named in a query, MySQL stops scanning any unused tables as soon as it finds the first ...
分类:数据库   时间:2017-12-29 15:27:12    阅读次数:178
OCP-047(Les13 Managing Schema Objects)[20171220]
目的: 增加约束 创建索引 使用CREATE TABLE语句创建索引 创建函数索引 删除列和将列置为UNUSED 平台FLASHBACK闪回操作 创建临时表 创建和使用外部表 ALTER TABLE语句 -增加列 -修改已存在的列 -定义列的默认值 -删除列 语法 ALTER TABLE table ...
分类:其他好文   时间:2017-12-21 17:12:13    阅读次数:160
查看数据库表空间
create table #Data(name varchar(100),row varchar(100),reserved varchar(100),data varchar(100),index_size varchar(100),unused varchar(100)) declare @na ...
分类:数据库   时间:2017-11-23 11:04:27    阅读次数:237
各个层次的gcc警告
http://blog.csdn.net/lizzywu/article/details/9419145 各个层次的gcc警告从上到下覆盖变量(代码)级:指定某个变量警告int a __attribute__ ((unused));指定该变量为"未使用的".即使这个变量没有被使用,编译时也会忽略则个 ...
分类:其他好文   时间:2017-11-17 21:06:25    阅读次数:195
[20171113]修改表结构删除列相关问题.txt
[20171113]修改表结构删除列相关问题.txt--//维护表结构删除字段一般都是先ALTER TABLE <table_name> SET UNUSED (<column_name>);--//然后等空闲时候删除列.ALTER TABLE <table_name> DROP UNUSED CO ...
分类:其他好文   时间:2017-11-13 13:46:39    阅读次数:179
162条   上一页 1 ... 3 4 5 6 7 ... 17 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!