实例介绍
SQL Server 2000 绿色精简版
【实例截图】
【核心代码】
4744300845220314494.zip
└── GSQL_6.5.0.4
├── BackUp
├── Binn
│ ├── atxcore.dll
│ ├── cmdwrap.exe
│ ├── comnevnt.dll
│ ├── console.exe
│ ├── dbghelp.dll
│ ├── ftsetup.exe
│ ├── Msdbi.dll
│ ├── mssdi98.dll
│ ├── mssql.mib
│ ├── msvcp71.dll
│ ├── msvcr71.dll
│ ├── odsole70.dll
│ ├── opends60.dll
│ ├── opends80.dll
│ ├── replupd.exe
│ ├── Resources
│ │ ├── 1033
│ │ │ ├── atxcore.rll
│ │ │ ├── odsole70.rll
│ │ │ ├── semmap.rll
│ │ │ ├── Semnt.rll
│ │ │ ├── sqlagent.rll
│ │ │ ├── sqlatxss.rll
│ │ │ ├── sqlcmdss.rll
│ │ │ ├── sqlevn70.rll
│ │ │ ├── sqlmaint.rll
│ │ │ ├── sqlrepss.rll
│ │ │ ├── sqlstbss.rll
│ │ │ ├── sqlsvc.rll
│ │ │ ├── xplog70.rll
│ │ │ └── xpstar.rll
│ │ └── 2052
│ │ ├── atxcore.rll
│ │ ├── odsole70.RLL
│ │ ├── semmap.rll
│ │ ├── Semnt.rll
│ │ ├── sqlagent.rll
│ │ ├── sqlatxss.RLL
│ │ ├── sqlcmdss.rll
│ │ ├── sqlevn70.rll
│ │ ├── sqlmaint.RLL
│ │ ├── sqlrepss.rll
│ │ ├── sqlstbss.rll
│ │ ├── sqlsvc.rll
│ │ ├── xplog70.rll
│ │ └── xpstar.rll
│ ├── Schema.txt
│ ├── semmap.dll
│ ├── semnt.dll
│ ├── sqlagent.dll
│ ├── sqlagent.exe
│ ├── sqlatxss.dll
│ ├── sqlboot.dll
│ ├── sqlcmdss.dll
│ ├── sqlctr80.dll
│ ├── SQLCTR.H
│ ├── SQLCTR.INI
│ ├── sqldata.dll
│ ├── sqldiag.exe
│ ├── sqlftqry.dll
│ ├── sqlimage.dll
│ ├── sqlmaint.exe
│ ├── sqlmap70.dll
│ ├── sqlrepss.dll
│ ├── sqlresld.dll
│ ├── sqlservr.exe
│ ├── sqlsnmp.dll
│ ├── sqlsort.dll
│ ├── sqlstbss.exe
│ ├── sqlsvc.dll
│ ├── ssmsad70.dll
│ ├── ssmsgnet.dll
│ ├── SSmsLPCn.dll
│ ├── ssmsqlgc.dll
│ ├── SSmsRP70.dll
│ ├── SSmsSH70.dll
│ ├── ssmssnet.dll
│ ├── SSmsVI70.dll
│ ├── SSnetlib.dll
│ ├── ssnmpn70.dll
│ ├── textcopy.exe
│ ├── ums.dll
│ ├── vswitch.exe
│ ├── w95scm.dll
│ ├── xpadsi.exe
│ ├── xplog70.dll
│ ├── xpqueue.dll
│ ├── xprepl.dll
│ ├── xpsqlbot.dll
│ ├── xpstar.dll
│ └── xpweb70.dll
├── Config.ini
├── Data
│ ├── master.mdf
│ ├── mastlog.ldf
│ ├── modellog.ldf
│ ├── model.mdf
│ ├── msdbdata.mdf
│ ├── msdblog.ldf
│ ├── tempdb.mdf
│ └── templog.ldf
├── GSql.exe
├── Log
├── MyDB
├── Sql_spX.Sys
├── Task
│ ├── My.sql
│ ├── OSQL.EXE
│ └── RunSqlScript.Bat
├── Tools
│ ├── isqlw
│ │ ├── Bak.rar
│ │ ├── Bak.reg
│ │ ├── Index.Tcg
│ │ ├── isqlw.exe
│ │ ├── objmgr80.xml
│ │ ├── objmgr.dll
│ │ ├── odbcbcp.dll
│ │ ├── pfclnt80.dll
│ │ ├── pfutil80.dll
│ │ ├── profiler.exe
│ │ ├── Reg.Bat
│ │ ├── Resources
│ │ │ └── 2052
│ │ │ ├── isqlw.rll
│ │ │ ├── objmgr.RLL
│ │ │ ├── pfclnt80.rll
│ │ │ ├── pfutil80.rll
│ │ │ ├── profiler.rll
│ │ │ ├── semsfc.rll
│ │ │ ├── SQLDMO.RLL
│ │ │ ├── sqlgui.rll
│ │ │ ├── sqlqry.rll
│ │ │ └── sqlsvc.RLL
│ │ ├── semsfc.dll
│ │ ├── SQLDMO.dll
│ │ ├── sqlgui.dll
│ │ ├── sqllex.dll
│ │ ├── sqlqry.dll
│ │ ├── sqlresld.dll
│ │ ├── sqlsvc.dll
│ │ ├── sqlunirl.dll
│ │ ├── Templates
│ │ │ ├── SQL Profiler
│ │ │ │ ├── SQLProfilerSP_Counts.tdf
│ │ │ │ ├── SQLProfilerStandard.tdf
│ │ │ │ ├── SQLProfilerTSQL_Duration.tdf
│ │ │ │ ├── SQLProfilerTSQL_Grouped.tdf
│ │ │ │ ├── SQLProfilerTSQL_Replay.tdf
│ │ │ │ ├── SQLProfilerTSQL_SPs.tdf
│ │ │ │ ├── SQLProfilerTSQL.tdf
│ │ │ │ └── SQLProfilerTuning.tdf
│ │ │ └── SQL Query Analyzer
│ │ │ ├── Attach and Detach Database
│ │ │ │ ├── Attach_Database_Template.tql
│ │ │ │ ├── Attach_Single_File_Database_Template.tql
│ │ │ │ └── Detach_Database_Template.tql
│ │ │ ├── Create Database
│ │ │ │ ├── Create Database Basic Template.tql
│ │ │ │ ├── Create Database for ATTACH.tql
│ │ │ │ ├── Create Database on Mulitple File Groups.tql
│ │ │ │ ├── Create Database on Multiple Data and Transaction Log Files.tql
│ │ │ │ └── Create Database Specifying Collation.tql
│ │ │ ├── Create Function
│ │ │ │ ├── Create Inline Function.tql
│ │ │ │ ├── Create Scalar Function.tql
│ │ │ │ └── Create Table Function.tql
│ │ │ ├── Create Index
│ │ │ │ ├── Create Index Basic.tql
│ │ │ │ └── Create Index Full Syntax.tql
│ │ │ ├── Create Procedure
│ │ │ │ ├── Create Procedure Basic Template.tql
│ │ │ │ ├── Create Procedure with CURSOR OUTPUT Parameter.tql
│ │ │ │ └── Create Procedure with OUTPUT Parameter.tql
│ │ │ ├── Create Statistics
│ │ │ │ └── Create Statistics Template.tql
│ │ │ ├── Create Table
│ │ │ │ ├── Create Table Basic Template.tql
│ │ │ │ ├── Create Table Specifying Constrains.tql
│ │ │ │ ├── Create Table Specifying File Groups.tql
│ │ │ │ ├── Create Table with Computed Column.tql
│ │ │ │ ├── Create Table with IDENTITY Column.tql
│ │ │ │ ├── Create Table with ROWGUIDCOL Column.tql
│ │ │ │ └── Create Temp Table.tql
│ │ │ ├── Create Trigger
│ │ │ │ ├── Create INSTEAD OF Trigger Basic Template.tql
│ │ │ │ ├── Create Trigger Basic Template.tql
│ │ │ │ ├── Create Trigger Contained IF COLUMNS_UPDATED.tql
│ │ │ │ └── Create Trigger Contained IF UPDATE.tql
│ │ │ ├── Create View
│ │ │ │ ├── Create View Basic Template.tql
│ │ │ │ ├── Create View with CHECK OPTION.tql
│ │ │ │ └── Create View with SCHEMABINDING.tql
│ │ │ ├── Manage Extended Property
│ │ │ │ ├── Add Extended Property.tql
│ │ │ │ ├── Drop Extended Property.tql
│ │ │ │ ├── List Extented Property.tql
│ │ │ │ └── Update Extended Property.tql
│ │ │ ├── Manage Linked Server
│ │ │ │ ├── Add Linked Server Login.tql
│ │ │ │ ├── Add non-Sql Server as Linked Server.tql
│ │ │ │ ├── Add Sql Server as Linked Server.tql
│ │ │ │ ├── Configure Linked Server.tql
│ │ │ │ ├── Drop Linked Server Login.tql
│ │ │ │ └── Drop Linked Server.tql
│ │ │ ├── Manage Login Role User
│ │ │ │ ├── Add Login to Server Role.tql
│ │ │ │ ├── Add Sql Server Login.tql
│ │ │ │ ├── Add User to Database Role.tql
│ │ │ │ ├── Deny Sql Server Access to Windows User or Group.tql
│ │ │ │ ├── Drop Login from Server Role.tql
│ │ │ │ ├── Drop Sql Server Login.tql
│ │ │ │ ├── Drop User from Database Role.tql
│ │ │ │ ├── Grant Database Access to Windows User or Sql Server Login.tql
│ │ │ │ ├── Grant Sql Server Access to Windows User or Group.tql
│ │ │ │ ├── Revoke Database Access From Windows User or Sql Server Login.tql
│ │ │ │ └── Revoke Sql Server Access from Windows User or Group.tql
│ │ │ └── Using Cursor
│ │ │ ├── Declare and Use KEYSET Cursor.tql
│ │ │ ├── Declare and Use READ_ONLY Cursor.tql
│ │ │ ├── Declare and Use SCROLL Cursor with Various FETCH Options.tql
│ │ │ └── Declare and Use UPDATE Cursor.tql
│ │ └── w95scm.dll
│ ├── ProSqlLogClear
│ │ ├── Index.Tcg
│ │ └── ProSqlLogClear.exe
│ ├── ShowLog
│ │ └── Index.Tcg
│ └── SQLManager
│ ├── autoplt.dll
│ ├── autowiz.dll
│ ├── axscphst.DLL
│ ├── Bak.reg
│ ├── bcp.exe
│ ├── cdw.exe
│ ├── cdwtasks.dll
│ ├── cdwtskui.dll
│ ├── comnevnt.dll
│ ├── ctasksui.dll
│ ├── custtask.DLL
│ ├── dbscan.dll
│ ├── dcomscm.EXE
│ ├── dtsffile.DLL
│ ├── dtspkg.dll
│ ├── dtspump.DLL
│ ├── dtsrun.exe
│ ├── dtsrunui.exe
│ ├── dtsui.dll
│ ├── dtswiz.dll
│ ├── dtswiz.exe
│ ├── Index.Tcg
│ ├── insrepim.dll
│ ├── isql.exe
│ ├── itwiz.exe
│ ├── mdt2db.dll
│ ├── mdt2dbns.dll
│ ├── mdt2dd.dll
│ ├── mdt2df.dll
│ ├── mdt2dfx.dll
│ ├── mdt2fref.dll
│ ├── mdt2fw.dll
│ ├── mdt2gddo.dll
│ ├── mdt2gddr.dll
│ ├── mdt2g.dll
│ ├── mdt2gkor.dll
│ ├── mdt2qd.dll
│ ├── mdt3g.dll
│ ├── mdW9x70.dll
│ ├── msdt70.dll
│ ├── msmdcb80.dll
│ ├── msmdcxml.dll
│ ├── msmdgd80.dll
│ ├── msmdun80.dll
│ ├── msolap80.dll
│ ├── msolui80.dll
│ ├── mssdi98.dll
│ ├── objmgr80.xml
│ ├── odbccmpt.exe
│ ├── osql.exe
│ ├── pfclnt80.dll
│ ├── pfutil80.dll
│ ├── psdcscm.dll
│ ├── Reg.Bat
│ ├── RegServer.Bat
│ ├── repbr.dll
│ ├── repbrui.dll
│ ├── replmon.pmc
│ ├── repodbc.dll
│ ├── Resources
│ │ ├── 1033
│ │ │ ├── autoplt.rll
│ │ │ ├── autowiz.rll
│ │ │ ├── axscphst.rll
│ │ │ ├── bcp.rll
│ │ │ ├── cdw.rll
│ │ │ ├── cdwtasks.rll
│ │ │ ├── cdwtskui.rll
│ │ │ ├── ctasksui.rll
│ │ │ ├── Custtask.rll
│ │ │ ├── dtsffile.RLL
│ │ │ ├── dtspkg.RLL
│ │ │ ├── dtspump.RLL
│ │ │ ├── dtsrun.RLL
│ │ │ ├── dtsrunui.rll
│ │ │ ├── dtsui.rll
│ │ │ ├── dtswiz.rll
│ │ │ ├── itwiz.rll
│ │ │ ├── mdt2fwui.dll
│ │ │ ├── msdt70ui.dll
│ │ │ ├── msmdcxml.rll
│ │ │ ├── msolap80.rll
│ │ │ ├── msrmirc.rll
│ │ │ ├── olapuir.rll
│ │ │ ├── pfclnt80.rll
│ │ │ ├── pfutil80.rll
│ │ │ ├── repbrmdc.rll
│ │ │ ├── repbrui.rll
│ │ │ ├── reprc.rll
│ │ │ ├── semcomn.rll
│ │ │ ├── Semcros.rll
│ │ │ ├── Semdll.rll
│ │ │ ├── semdts.rll
│ │ │ ├── SEMEXEC.rll
│ │ │ ├── semmap.RLL
│ │ │ ├── Semnt.rll
│ │ │ ├── Semobj.rll
│ │ │ ├── Semrepl.rll
│ │ │ ├── semsfc.rll
│ │ │ ├── Semsys.rll
│ │ │ ├── semwebwz.rLL
│ │ │ ├── Semwiz.rll
│ │ │ ├── Sqldmo.rll
│ │ │ ├── sqlftwiz.rll
│ │ │ ├── sqlgui.rll
│ │ │ ├── sqlisapi.rll
│ │ │ ├── sqlmmc.rll
│ │ │ ├── sqlns.rll
│ │ │ ├── sqlsvc.RLL
│ │ │ └── sqlvdir.rll
│ │ └── 2052
│ │ ├── autoplt.rll
│ │ ├── autowiz.rll
│ │ ├── axscphst.rll
│ │ ├── bcp.rll
│ │ ├── cdw.rll
│ │ ├── cdwtasks.rll
│ │ ├── cdwtskui.rll
│ │ ├── ctasksui.rll
│ │ ├── Custtask.rll
│ │ ├── dtsffile.RLL
│ │ ├── dtspkg.RLL
│ │ ├── dtspump.RLL
│ │ ├── dtsrun.RLL
│ │ ├── dtsrunui.rll
│ │ ├── dtsui.rll
│ │ ├── dtswiz.rll
│ │ ├── itwiz.rll
│ │ ├── mdt2dbui.dll
│ │ ├── mdt2ddui.dll
│ │ ├── mdt2fwui.dll
│ │ ├── mdt2qdui.dll
│ │ ├── msdt70ui.dll
│ │ ├── msmdcxml.rll
│ │ ├── msolap80.rll
│ │ ├── msrmirc.rll
│ │ ├── olapuir.rll
│ │ ├── pfclnt80.rll
│ │ ├── pfutil80.rll
│ │ ├── repbrmdc.rll
│ │ ├── repbrui.rll
│ │ ├── reprc.rll
│ │ ├── semcomn.rll
│ │ ├── Semcros.rll
│ │ ├── Semdll.rll
│ │ ├── semdts.rll
│ │ ├── Semexec.rll
│ │ ├── semmap.RLL
│ │ ├── Semnt.rll
│ │ ├── Semobj.rll
│ │ ├── Semrepl.rll
│ │ ├── semsfc.rll
│ │ ├── Semsys.rll
│ │ ├── semwebwz.RLL
│ │ ├── Semwiz.rll
│ │ ├── Sqldmo.rll
│ │ ├── sqlftwiz.rll
│ │ ├── sqlgui.rll
│ │ ├── sqlisapi.rll
│ │ ├── sqlmmc.rll
│ │ ├── sqlns.rll
│ │ ├── sqlsvc.RLL
│ │ └── sqlvdir.rll
│ ├── semcomn.dll
│ ├── Semcros.dll
│ ├── Semdll.dll
│ ├── semdts.dll
│ ├── SEMEXEC.dll
│ ├── semmap.dll
│ ├── semnt.dll
│ ├── Semobj.dll
│ ├── semrepl.dll
│ ├── semsfc.dll
│ ├── Semsys.dll
│ ├── semwebwz.DLL
│ ├── Semwiz.dll
│ ├── ServerAdmin.exe
│ ├── sqlbrows.cnt
│ ├── sqlbrows.hlp
│ ├── sqldbg.dll
│ ├── sqldbreg.exe
│ ├── sqldmo80.cnt
│ ├── sqldmo80.hlp
│ ├── SQLDMO.dll
│ ├── sqldts80.cnt
│ ├── sqldts80.GID
│ ├── sqldts80.hlp
│ ├── sqlftwiz.dll
│ ├── sqlftwiz.exe
│ ├── sqlgui.dll
│ ├── sql iis admin.msc
│ ├── sqlisapi.dll
│ ├── sqllex.dll
│ ├── sqlmmc.dll
│ ├── sqlmmcem.chm
│ ├── sqlmmcii.chm
│ ├── sqlmmcrp.chm
│ ├── sqlns80.cnt
│ ├── sqlns80.hlp
│ ├── sqlns.dll
│ ├── sqlresld.dll
│ ├── SQL Server Enterprise Manager.MSC
│ ├── sqlsvc.dll
│ ├── sqlvdir.dll
│ ├── stardds.dll
│ └── w95scm.dll
├── 教程帮助
│ ├── 如何将数据库打包发布.rtf
│ ├── 如何自己写程序控制GSQL
│ │ ├── Del.bat
│ │ ├── GSQLAdmin.pas
│ │ ├── Project1.dpr
│ │ ├── Project1.res
│ │ ├── Unit1.dfm
│ │ └── Unit1.pas
│ ├── 帮助.rtf
│ └── 自动附加数据库如何使用.rtf
├── 管理器日志.txt
└── 绿盟-首页.url
38 directories, 413 files
标签:
相关软件
小贴士
感谢您为本站写下的评论,您的评论对其它用户来说具有重要的参考价值,所以请认真填写。
- 类似“顶”、“沙发”之类没有营养的文字,对勤劳贡献的楼主来说是令人沮丧的反馈信息。
- 相信您也不想看到一排文字/表情墙,所以请不要反馈意义不大的重复字符,也请尽量不要纯表情的回复。
- 提问之前请再仔细看一遍楼主的说明,或许是您遗漏了。
- 请勿到处挖坑绊人、招贴广告。既占空间让人厌烦,又没人会搭理,于人于己都无利。
关于好例子网
本站旨在为广大IT学习爱好者提供一个非营利性互相学习交流分享平台。本站所有资源都可以被免费获取学习研究。本站资源来自网友分享,对搜索内容的合法性不具有预见性、识别性、控制性,仅供学习研究,请务必在下载后24小时内给予删除,不得用于其他任何用途,否则后果自负。基于互联网的特殊性,平台无法对用户传输的作品、信息、内容的权属或合法性、安全性、合规性、真实性、科学性、完整权、有效性等进行实质审查;无论平台是否已进行审查,用户均应自行承担因其传输的作品、信息、内容而可能或已经产生的侵权或权属纠纷等法律责任。本站所有资源不代表本站的观点或立场,基于网友分享,根据中国法律《信息网络传播权保护条例》第二十二与二十三条之规定,若资源存在侵权或相关问题请联系本站客服人员,点此联系我们。关于更多版权及免责申明参见 版权及免责申明
网友评论
我要评论