代码搜索:SO库
找到约 10,000 项符合「SO库」的源代码
代码结果 10,000
www.eeworm.com/read/155667/11855957
edb 数据库2.edb
www.eeworm.com/read/155667/11855959
edb 数据库4.edb
www.eeworm.com/read/155667/11855961
e 对应数据库读写.e
www.eeworm.com/read/344389/11884944
rar 实用的pcb封装库.rar
www.eeworm.com/read/344155/11907140
exe 数据库管理助手.exe
www.eeworm.com/read/343807/11924380
pps 5.2 语音函数库.pps
www.eeworm.com/read/343072/11977103
vbp 数据库1.vbp
Type=Exe
Reference=*\G{00020430-0000-0000-C000-000000000046}#2.0#0#C:\WINDOWS\SYSTEM\STDOLE2.TLB#OLE Automation
Reference=*\G{00025E01-0000-0000-C000-000000000046}#4.0#0#C:\PROGRAM FILES\COMMON FILE
www.eeworm.com/read/343026/11982476
sql 数据库复制-月结.sql
/*========== 生成月结数据库 ==========*/
/*--要求描述
数据库名格式为: xxYYYYMM,即指定的前缘xx+年月
要求在每个月末自动复制本月数据库,生成下个月的空数据库
--*/
--方法1. 备份+恢复
use master
go
if exists (select * from dbo.sysobjects where id =
www.eeworm.com/read/343026/11982502
sql 恢复数据库.sql
if exists (select * from dbo.sysobjects where id = object_id(N'[dbo].[p_RestoreDb]') and OBJECTPROPERTY(id, N'IsProcedure') = 1)
drop procedure [dbo].[p_RestoreDb]
GO
/*--恢复数据库的通用存储过程
--邹建 200