码迷,mamicode.com
首页 >  
搜索关键字:alter database add s    ( 53953个结果
Linux下git基本使用总结<1>
1.安装 Linux下直接apt-get install git 或者 apt-get install git-core 即可   2.创建版本库 进入目录 git init 此时会生成一个.git的目录,用来管理你的这个目录下的版本,一般不要动.git目录。   3.添加文件,并提交 git add  filename                          可以看作将文...
分类:系统相关   时间:2014-05-23 08:14:08    阅读次数:374
【LeetCode】Add Two Numbers
You are given two linked lists representing two non-negative numbers. The digits are stored in reverse order and each of their nodes contain a single digit. Add the two numbers and return it as a link...
分类:其他好文   时间:2014-05-23 07:43:23    阅读次数:246
JDK源码分析—— ArrayBlockingQueue 和 LinkedBlockingQueue
目的:本文通过分析JDK源码来对比ArrayBlockingQueue 和LinkedBlockingQueue,以便日后灵活使用。 1. 在Java的Concurrent包中,添加了阻塞队列BlockingQueue,用于多线程编程。BlockingQueue的核心方法有: * boolean add(E e) ,把 e 添加到BlockingQueue里。如果BlockingQueue可以容纳,则返回true,否则抛出异常。 * boolean offer(E e),表示如果可能的话,将 e 加...
分类:数据库   时间:2014-05-22 12:19:23    阅读次数:442
在Oracle 11.2.0.1.0下dbms_stats.gather_table_stats收集直方图不准
SQL> select * from v$version; BANNER -------------------------------------------------------------------------------- Oracle Database 11g Enterprise Edition Release 11.2.0.1.0 - 64bit Production ...
分类:数据库   时间:2014-05-22 10:00:09    阅读次数:434
Oracle 数据文件管理
1、手工改变数据文件的大小 SQL>conn / as sysdba SQL>Createtablespace exampletb Datafile 'E:\ examp01.dbf' size 10M ; SQL>alter database datafile 'E:\examp01.dbf' resize 20m; SQL>alter database datafile 'E:\exa...
分类:数据库   时间:2014-05-22 07:42:15    阅读次数:374
Table inheritance implementation changed
在AX 2012 R2我们会发现有些table是在AOT里的,但是不存在实际的SQL Database. 例如:CompanyInfo table. 最终通过Extends property,可以发现CompanyInfo table 继承的是DirPartyTable. 1. 为了研究清楚tabl...
分类:其他好文   时间:2014-05-20 13:35:25    阅读次数:282
Leetcode:Add Binary
戳我去解题Given two binary strings, return their sum (also a binary string).For example,a ="11"b ="1"Return"100".分析:高精度加法,只是将10进制的高精度加法 换成了 2进制的高精度加法首先将 两个...
分类:其他好文   时间:2014-05-20 11:21:52    阅读次数:224
MySql常用命令总结
1:使用SHOW语句找出在服务器上当前存在什么数据库:mysql> SHOW DATABASES;2:2、创建一个数据库MYSQLDATAmysql> CREATE DATABASE MYSQLDATA;3:选择你所创建的数据库mysql> USE MYSQLDATA; (按回车键出现Databas...
分类:数据库   时间:2014-05-20 10:24:33    阅读次数:282
变量,存储过程,触发器,事务-索引等
--SELECT TOP 3 Name,Age,Gender FROM View_Student WHERE GROUP having ORDER BY id DESC----在最终生成用户想要的数据之后,才进行排序,如果不得不排序,那么就尽可能吧消耗减到最小--ALTER VIEW View_St...
分类:其他好文   时间:2014-05-20 09:20:36    阅读次数:360
用 Python 替代 Bash 脚本(转)
add by zhj: 其实作者是想说用Python来做那些Bash实现起来比较麻烦的部分,即将Bash与Python结合使用。英文原文:http://www.linuxjournal.com/content/python-scripts-replacement-bash-utility-scrip...
分类:编程语言   时间:2014-05-20 08:53:25    阅读次数:735
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!