码迷,mamicode.com
首页 >  
搜索关键字:h2 database    ( 15591个结果
MSSQL如何在没有主键的表中删除重复数据
为了对重复数据进行实验,下面建一个设计不太好(没有主键)表并插入了一些重复数据:create database testdbuse testdb ;gocreate table DupsNoPK(Col1 int Null, Col2 char(5) Null);goinsert DupsNoPK(...
分类:数据库   时间:2014-07-07 21:49:13    阅读次数:192
MSSQL如何在没有主键的表中删除重复数据
原文:MSSQL如何在没有主键的表中删除重复数据为了对重复数据进行实验,下面建一个设计不太好(没有主键)表并插入了一些重复数据:create database testdbuse testdb ;gocreate table DupsNoPK(Col1 int Null, Col2 char(5) ...
分类:数据库   时间:2014-07-07 21:26:11    阅读次数:233
python 连接MSSQL
# -*- coding: utf-8 -*-import pymssqlconn=pymssql.connect(host=".",user="sa",password="",database="UFDATA_001_2013",charset="utf8")#conn=pymssql.conne...
分类:数据库   时间:2014-07-07 19:55:41    阅读次数:224
MYSQL术语表
MYSQL术语表http://dev.mysql.com/doc/refman/5.6/en/glossary.htmlMySQL GlossaryThese terms are commonly used in information about the MySQL database server...
分类:数据库   时间:2014-07-07 18:27:17    阅读次数:524
sqlserver还原bak备份文件
先查看数据库逻辑名称:restore filelistonly from disk='D:/database.bak'然后恢复:restore database smsdb from disk = 'd:\smsdb.bak'with move '数据库逻辑名称' to 'C:\Progra...
分类:数据库   时间:2014-07-07 15:47:56    阅读次数:318
「笔记」「ubuntu」mint个人shell样式脚本
alias ll='ls -al'use_color=false# Set colorful PS1 only on colorful terminals.# dircolors --print-database uses its own built-in database# instead of ...
分类:其他好文   时间:2014-07-07 13:41:54    阅读次数:245
Oracle创建Physical Standby Database案例
Creating a Physical Standby Database This case is created, operated and followed the steps from oracle online help documentation.  The configuration of the two sites server: Primary Database: [roo...
分类:数据库   时间:2014-06-30 19:37:39    阅读次数:313
PL/SQL简介
(Procedure Language,过程化语言)SQL 1999各大数据库厂商通用的一种结构化语言 PL/SQL只支持Oracle数据库 基本语法 多行注释 /* */ 单行注释 -- PLSQL程序块 结构 [declare] 定义变量 begin 过程语句 [exception] 处理 异常 end; 例子 输出helloworld begin dbms_output.put_line('hello'); end; --如果...
分类:数据库   时间:2014-06-30 18:55:36    阅读次数:337
常用的DB2命令(2)
catalog数据库: catalog indirect: db2 catalog database on /db2sys[dir_name] catalog remote:    db2 catalog database as at node     事例:         db2 catalog tcpip node NODESUN remote 192.168.1.1 s...
分类:数据库   时间:2014-06-30 18:19:41    阅读次数:300
win7配置免安装mysql5.6.19过程详解
本文主要介绍免安装配置mysql5.6.19的过程,整个过程中自己出现很多次失误,经过整理,现将一次可成功的过程记录下来,供大家参考。 准备 在mysq官网 http://dev.mysql.com/downloads/mysql/,下载最新稳定版本。 本文使用的mysql版本为5.6.19,因下载免安装版本,在页面选择“Windows (x86, 64-bit), ZIP Ar...
分类:数据库   时间:2014-06-30 10:21:24    阅读次数:348
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!