码迷,mamicode.com
首页 >  
搜索关键字:use    ( 28727个结果
第7章 示例
--常用系统存储过程的使用EXEC sp_databases --列出当前系统中的数据库EXEC sp_renamedb 'MyBank' ,'bank'--改变数据库的名称(单用户访问)use MySchoolgoEXEC sp_tables --当前数据库中可查询对象的列表EXEC sp_col ...
分类:其他好文   时间:2016-04-06 23:15:53    阅读次数:141
安装StarUML 及使用时序图(Sequence Diagram)和用例图(use case diagram)
时序图 用例图 ...
分类:其他好文   时间:2016-04-06 21:38:22    阅读次数:956
过滤字符串中中文
1 USE [master] 2 GO 3 /****** Object: UserDefinedFunction [dbo].[RemoveCharRep] Script Date: 04/06/2016 17:34:54 ******/ 4 SET ANSI_NULLS ON 5 GO 6 SE ...
分类:其他好文   时间:2016-04-06 18:46:02    阅读次数:185
得到当前日期旬
1 USE [master] 2 GO 3 /****** Object: UserDefinedFunction [dbo].[dtGetXun] Script Date: 04/06/2016 17:41:12 ******/ 4 SET ANSI_NULLS ON 5 GO 6 SET QUO ...
分类:其他好文   时间:2016-04-06 18:28:52    阅读次数:198
序列化TList of objects
Some weeks ago a customer asked to me if it is possibile serialize a TList of objects. “Hey, you should use a TObjectList for this”, I said, but he ab ...
分类:其他好文   时间:2016-04-06 18:25:06    阅读次数:133
统计某字符(串)重复出现次数
USE [master] GO/****** Object: UserDefinedFunction [dbo].[CharRepeat] Script Date: 04/06/2016 17:32:06 ******/SET ANSI_NULLS ONGOSET QUOTED_IDENTIFIER ...
分类:其他好文   时间:2016-04-06 18:24:48    阅读次数:128
mysql basic command
mysql的command以分号来分隔 1. 连接数据库 mysql -uroot -p 然后输入密码即可 2. 查看数据库 show databases; 3. 改变数据库 use database_name; 4.查看所有的表格 show tables; 5.查询某一表格的schema信息 de ...
分类:数据库   时间:2016-04-06 14:58:35    阅读次数:178
mysql sql语句大全
1、说明:创建数据库 CREATE DATABASE database-name 2、说明:删除数据库 drop database dbname 3、说明:备份sql server 创建 备份数据的 device USE master EXEC sp_addumpdevice 'disk', 'te ...
分类:数据库   时间:2016-04-06 11:11:51    阅读次数:187
S+ hidden tray with window start
I forgot that this is supported in the code, but it requires a little editing of the config or a special sequence.Open S+, use the hotkey to hide the ...
分类:Windows程序   时间:2016-04-06 11:08:07    阅读次数:229
ojdbc14_g.jar与ojdbc14.jar区别
在低级JDK版本1.2与1.3中使用的驱动,class12.jar,虽然实际上在1.4,1.5中使用大部分情况也是OK的 ojdbc14.jar (1,545,954 bytes) - classes for use with JDK 1.4 and 1.5在高级JDK版本1.4与1.5中使用的驱动 ...
分类:数据库   时间:2016-04-06 10:58:34    阅读次数:141
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!