码迷,mamicode.com
首页 >  
搜索关键字:help tables    ( 12872个结果
MySQL基础知识
导出数据mysqldump --opt -hlocalhost -uusername -ppassword --skip-lock-tables databasename>database.sql 导入数据mysql> source 路径\**.sql创建中文名称数据库mysql> set n...
分类:数据库   时间:2014-07-22 22:53:56    阅读次数:274
查看mysql库大小,表大小,索引大小
说明:通过MySQL的 information_schema 数据库,可查询数据库中每个表占用的空间、表记录的行数;该库中有一个 TABLES 表,这个表主要字段分别是:TABLE_SCHEMA : 数据库名TABLE_NAME:表名ENGINE:所使用的存储引擎TABLES_ROWS:记录数DAT...
分类:数据库   时间:2014-07-19 21:28:31    阅读次数:291
安装SQL Servre2000时提示“command line option syntax error! type command /? for help”
问题:当程序正在安装ms数据访问组件时,弹出错误提示框:command line option syntax error,type command/? for help,点击确定继续;到了程序正在安装HTML帮助时,弹出标题为html help 1.32 update错误提示框:command li...
分类:数据库   时间:2014-07-17 00:09:02    阅读次数:354
sss
Git视图文件忽略共享文件忽略git忽略语法(git help ignore)本地仓库忽略提交add+commit查看文件状态git status日志logPart1 查看日志信息Part2 修改最后一次commit的信息(Amend previous commit按钮)Part3 日志搜索Part...
分类:其他好文   时间:2014-07-16 18:26:50    阅读次数:496
Maven 常用命令及作用
mvn clean、mvn package、mvn clean install -e、mvn dependency:analyze、mvn denpendency:tree -Dincludes=*:junit -Dverbose、mvn help:effective-pom/mvn help:ef...
分类:其他好文   时间:2014-07-16 18:17:22    阅读次数:1393
MySQL基本管理和应用
# yum install mysql-server# /etc/init.d/mysqld startInitializing MySQL database: Installing MySQL system tables...OKFilling help tables...OKTo start ....
分类:数据库   时间:2014-07-16 16:50:32    阅读次数:371
perl getopt 使用方法
我们在linux常常用到一个程序需要加入参数,现在了解一下perl中的有关控制参数的函数.getopt.在linux有的参数有二种形式.一种是--help,另一种是-h.也就是-和--的分别。--表示完整参数.-表示简化参数. 在perl中也分这二种. Getopt::Std模块的功能: 初始化perl命令行中所接受的参数,简化了命令行参数的解析。 简化参数例子:  #!/usr...
分类:其他好文   时间:2014-07-16 16:16:50    阅读次数:245
sql 2000 分页
create PROCEDURE [dbo].[Proc_GetPageList]( @Tables varchar(1000), --表名 @PK varchar(100), --主键 @Fields varchar(1000) = '*', --查询的字段@SortField varchar(....
分类:数据库   时间:2014-07-16 14:42:55    阅读次数:264
ArcObjects 中连接geodatabase
参考资料:1.http://help.arcgis.com/en/sdk/10.0/arcobjects_net/conceptualhelp/index.html#/d/0001000003s8000000.htm2.http://help.arcgis.com/en/sdk/10.0/arcob...
分类:数据库   时间:2014-07-16 12:46:27    阅读次数:182
Python知识点: __import__
help(__import__)__import__(...) __import__(name, globals={}, locals={}, fromlist=[], level=-1) -> module 导入一个模块。 globals:决定上下文,不修改。 locals:当前未使用。 ...
分类:编程语言   时间:2014-07-16 00:48:27    阅读次数:302
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!