代码搜索:数据存储

找到约 10,000 项符合「数据存储」的源代码

代码结果 10,000
www.eeworm.com/read/154716/11933331

rc2 数据库设置.rc2

// // 数据库设置.RC2 - resources Microsoft Visual C++ does not edit directly // #ifdef APSTUDIO_INVOKED #error this file is not editable by Microsoft Visual C++ #endif //APSTUDIO_INVOKED /////
www.eeworm.com/read/154716/11933340

cpp 数据库设置dlg.cpp

// 数据库设置Dlg.cpp : implementation file // #include "stdafx.h" #include "数据库设置.h" #include "数据库设置Dlg.h" #include "SQLServer.h" #ifdef _DEBUG #define new DEBUG_NEW #undef THIS_FILE static char
www.eeworm.com/read/154716/11933397

h 数据库设置dlg.h

// 数据库设置Dlg.h : header file // #if !defined(AFX_DLG_H__61743F56_7AAC_473A_BD55_63FE258A408B__INCLUDED_) #define AFX_DLG_H__61743F56_7AAC_473A_BD55_63FE258A408B__INCLUDED_ #if _MSC_VER > 1000
www.eeworm.com/read/343026/11982466

sql 数据库文件移动.sql

use master --必须在master数据库中创建 go if exists (select * from dbo.sysobjects where id = object_id(N'[dbo].[p_MoveDb]') and OBJECTPROPERTY(id, N'IsProcedure') = 1) drop procedure [dbo].[p_MoveDb] GO
www.eeworm.com/read/343026/11982484

sql 还原数据库txt.sql

还原数据库 企业管理器 --右键"数据库" --所有任务 --还原数据库 --"还原为数据库库"中输入还原后的数据库名 --还原选择"从设备"--选择设备--添加--添加你的备份文件--确定,回到数据库还原的界面 --备份号--选择内容--选择你要恢复那次备份的内容 --选项--将"移至物理文件名"中的物理文件名修改为你的数据文件要存放的文件名 --如果要还原 ...
www.eeworm.com/read/343026/11982548

sql sql server数据库检修.sql

SQL Server数据库检修 zjcxc(原作) 使用数据库的过程中,由于断电或其他原因,有可能导致数据库出现一些小错误,比如检索某些表特别慢,查询不到符合条件的数据等. 出现这些情况的原因,往往是因为数据库有些损坏,或索引不完整. 在ACCESS中,有个修复数据库的功能可以解决这个问题,在SQL企业管理器,没有这个功能,要用语句来完成,下面就介绍如何用 ...
www.eeworm.com/read/343026/11982760

sql bcp表数据存为xml.sql

if exists (select * from dbo.sysobjects where id = object_id(N'[dbo].[p_savexml]') and OBJECTPROPERTY(id, N'IsProcedure') = 1) drop procedure [dbo].[p_savexml] GO /*--将表中的数据存储为xml文档 --邹建 2005.