码迷,mamicode.com
首页 > 数据库
附加数据库 对于 服务器“00-PC”失败
错误消息:标题: Microsoft SQL Server Management Studio------------------------------附加数据库 对于 服务器“LL-PC”失败。 (Microsoft.SqlServer.Smo)有关帮助信息,请单击: http://go.mi....
分类:数据库   时间:2015-04-27 13:08:27    阅读次数:157
oracle 表误更新 (flashback )闪回操作
--oracle 表误更新 闪回操作 测试环境--select * from v$database;--select * from v$version;操作第一步1.如下命令启用行迁移alter table test_a enable row movement;2.如下命令闪回到某时间点flashb...
分类:数据库   时间:2015-04-27 13:06:56    阅读次数:155
Magento中如何调用SQL语句
I. 创建表结构和测试数据create table rooms(id int not null auto_increment, name varchar(100), primary key(id));insert into rooms values(1,'Royal Room');insert in...
分类:数据库   时间:2015-04-27 13:03:58    阅读次数:173
Linux下使用yum安装mysql
linux下使用yum安装mysql 1、安装查看有没有安装过: yum list installed mysql* rpm -qa | grep mysql* 查看有没有安装包: yum list mysql* 安装mysql客户端: ...
分类:数据库   时间:2015-04-27 13:05:16    阅读次数:143
Oracle 11g透明网关连接Sqlserver 2000(转)
Oracle 11g透明网关连接Sqlserver 2000:http://www.cnblogs.com/lightnear/archive/2013/02/03/2890858.html
分类:数据库   时间:2015-04-27 13:03:18    阅读次数:123
[转]在WIN7下安装运行mongodb
本文转自:http://www.cnblogs.com/snake-hand/p/3172376.html1)、下载MongoDB http://downloads.mongodb.org/win32/mongodb-win32-i386-2.4.5.zip下载Windows 32-bit版本并解压...
分类:数据库   时间:2015-04-27 12:51:27    阅读次数:220
未在本地计算机上注册“microsoft.ACE.oledb.12.0”提供程序解决办法
解决办法:1、去http://download.microsoft.com/download/7/0/3/703ffbcb-dc0c-4e19-b0da-1463960fdcdb/AccessDatabaseEngine.exe下载。然后安装就行了。 本错误是由于你使用了ACCESS2007版本.....
分类:数据库   时间:2015-04-27 12:49:33    阅读次数:150
数据库存储过程多用户同时冲突问题解决构思
1 写个函数自动生成流水号--得到最新编号的函数create function f_newid()returns char(7) --编号位数固定,用char的检索效率高于varcharasbegin declare @re char(7) select @re=max(BHID) ...
分类:数据库   时间:2015-04-27 12:47:37    阅读次数:143
Oracle中使用透明网关链接到Sqlserver(转)
测试环境介绍1、ORACLEServerDatabase version:10.2.0IP:192.168.1.5ORACLE_HOME:D:\oracle\product\10.2.0\db_12、Oracle transparent Gateway ServerVersion:10.2.0IP:...
分类:数据库   时间:2015-04-27 12:46:58    阅读次数:232
[MySQL] Stored Procedures
Stored routines (procedures and functions)can be particularly useful in certain situations:When multiple client applications are written in different ...
分类:数据库   时间:2015-04-27 12:42:32    阅读次数:175
Linq to SQL Like Operator
As a response for customer's question, I decided to write about using Like Operator in Linq to SQL queries.Starting from a simple query from Northwind...
分类:数据库   时间:2015-04-27 12:33:41    阅读次数:183
SQL Server 2012安装错误:Error while enabling Windows feature: NetFx3, Error Code: -2146498298
最近在安装SQL server 2012时,碰到错误:Error while enabling Windows feature: NetFx3, Error Code: -2146498298。原本以为Windows 2012配上SQL server 2012应该是一路顺畅才对啊。下面是这个问题的描述及解决方案。 1、安装环境OS:Windows 2012 data center版本SQL:SQL...
分类:数据库   时间:2015-04-27 11:27:13    阅读次数:239
Redhat 6.4安装ORACLE11R2 ,运行root.sh报错:“libcap.so.1:cannot open shared object file”
1、系统环境:     Redhat 6.4 企业版                     Oracle11.2.0.2 RAC+ASM 2、报错信息:/oracle/app/11.2.0/grid/bin/clscfg.bin: error while loading shared libraries: libcap.so.1: cannot open shared object f...
分类:数据库   时间:2015-04-27 11:22:12    阅读次数:185
MySQL国内镜像资源
搜狐开源镜像站:http://mirrors.sohu.com/...
分类:数据库   时间:2015-04-27 11:13:58    阅读次数:2749
创建连接数据库(DBLink)
Exec sp_droplinkedsrvlogin 'YD-MAIN-SMS',Null --若存在先刪除 YD-MAIN-SMS为DBLink的名字 即被訪問的服務器別名自己命名Exec sp_dropserver 'YD-MAIN-SMS'EXEC sp_addlinkedserver@ser...
分类:数据库   时间:2015-04-27 11:10:11    阅读次数:139
Jdbc连接Hive
public class TestHive { private static String driverName = "org.apache.hadoop.hive.jdbc.HiveDriver"; public static void main(String[] args) throws SQLException { try { Class.forName(driverNam...
分类:数据库   时间:2015-04-27 10:07:08    阅读次数:156
linux下gcc.gdb整理
gcc 常用选项 -c 只编译不链接,生成目标文件".o" -S 只编译不汇编,生成汇编代码 -E 只进行预编译,不做其他处理 -g 在可执行程序中包含标准调试信息 -o file 将file文件指定为输出文件 -v 打印出编译器内部编译各过程的命令行信息和编译器的版本 -I dir 在头文件的搜索路径列表中添加dir目录 gcc库选项列表 -static 进行静态...
分类:数据库   时间:2015-04-27 10:03:37    阅读次数:225
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!