Disclaimer: We hope that the information on these pages is valuable to you.
Your use of the information contained in these pages, however, is at your sole risk.
All information on these pages is provided "as -is", without any warranty, whether express or implied,
of its accuracy, completeness, fitness for a particular purpose, title or non-infringement,
and none of the third-party products or information mentioned in the work are authored, recommended, supported or guaranteed by site owners or operators.
Further, the site owners and operators shall not be liable for any damages you may sustain by using this information,
whether direct, indirect, special, incidental or consequential, even if it has been advised of the possibility of such damages.
Warning: main(/home/prosphot/public_html/smog/track/write_logs.php) [function.main]: failed to open stream: No such file or directory in /home/prosphot/public_html/blog/skins/leaf/footer.php on line 3
Warning: main(/home/prosphot/public_html/smog/track/write_logs.php) [function.main]: failed to open stream: No such file or directory in /home/prosphot/public_html/blog/skins/leaf/footer.php on line 3
Warning: main() [function.include]: Failed opening '/home/prosphot/public_html/smog/track/write_logs.php' for inclusion (include_path='.:/usr/lib/php:/usr/local/lib/php') in /home/prosphot/public_html/blog/skins/leaf/footer.php on line 3
Tue 09.12.06: SharePoint 2003 config_db
The config_db (SP01_Config_db) database contains the tables that give SPS 2003 its basic configuration tables. I will try and discuss each table and where you can access it from within SharePoint Administration.In my Install, here are the databases that exist in the Config_db
dbo.AntiVirusVendors
db.CustomTemplates
dbo.Databases
dbo.Globals
dbo.Installed WebPartPackages
dbo.PortalGlobals
dbo.PortalSchemaVersion
dbo.PortalSites
dbo.PortalTombstones
dbo.PortalUrls
dbo.PortalWorkSpaces
dbo.PortalZoneUrls
dbo.Servers
dbo.Services
dbo.Sites
dbo.VirtualServers
dbo.WebPartPackages
DB Create SQL
USE [master]
GO
/****** Object: Database [SPS01_Config_db] Script Date: 09/12/2006 08:49:57 ******/
CREATE DATABASE [SPS01_Config_db] ON PRIMARY
( NAME = N'SPS01_Config_db', FILENAME = N'D:\SQL\Database\\SPS01_Config_db.mdf' , SIZE = 6720KB , MAXSIZE = UNLIMITED, FILEGROWTH = 10%)
LOG ON
( NAME = N'SPS01_Config_db_log', FILENAME = N'D:\SQL\Log\\SPS01_Config_db_log.LDF' , SIZE = 504KB , MAXSIZE = UNLIMITED, FILEGROWTH = 10%)
COLLATE Latin1_General_CI_AS_KS_WS
GO
EXEC dbo.sp_dbcmptlevel @dbname=N'SPS01_Config_db', @new_cmptlevel=80
GO
IF (1 = FULLTEXTSERVICEPROPERTY('IsFullTextInstalled'))
begin
EXEC [SPS01_Config_db].[dbo].[sp_fulltext_database] @action = 'disable'
end
GO
ALTER DATABASE [SPS01_Config_db] SET ANSI_NULL_DEFAULT OFF
GO
ALTER DATABASE [SPS01_Config_db] SET ANSI_NULLS OFF
GO
ALTER DATABASE [SPS01_Config_db] SET ANSI_PADDING OFF
GO
ALTER DATABASE [SPS01_Config_db] SET ANSI_WARNINGS OFF
GO
ALTER DATABASE [SPS01_Config_db] SET ARITHABORT OFF
GO
ALTER DATABASE [SPS01_Config_db] SET AUTO_CLOSE OFF
GO
ALTER DATABASE [SPS01_Config_db] SET AUTO_CREATE_STATISTICS ON
GO
ALTER DATABASE [SPS01_Config_db] SET AUTO_SHRINK ON
GO
ALTER DATABASE [SPS01_Config_db] SET AUTO_UPDATE_STATISTICS ON
GO
ALTER DATABASE [SPS01_Config_db] SET CURSOR_CLOSE_ON_COMMIT OFF
GO
ALTER DATABASE [SPS01_Config_db] SET CURSOR_DEFAULT GLOBAL
GO
ALTER DATABASE [SPS01_Config_db] SET CONCAT_NULL_YIELDS_NULL OFF
GO
ALTER DATABASE [SPS01_Config_db] SET NUMERIC_ROUNDABORT OFF
GO
ALTER DATABASE [SPS01_Config_db] SET QUOTED_IDENTIFIER OFF
GO
ALTER DATABASE [SPS01_Config_db] SET RECURSIVE_TRIGGERS OFF
GO
ALTER DATABASE [SPS01_Config_db] SET ENABLE_BROKER
GO
ALTER DATABASE [SPS01_Config_db] SET AUTO_UPDATE_STATISTICS_ASYNC OFF
GO
ALTER DATABASE [SPS01_Config_db] SET DATE_CORRELATION_OPTIMIZATION OFF
GO
ALTER DATABASE [SPS01_Config_db] SET TRUSTWORTHY OFF
GO
ALTER DATABASE [SPS01_Config_db] SET ALLOW_SNAPSHOT_ISOLATION OFF
GO
ALTER DATABASE [SPS01_Config_db] SET PARAMETERIZATION SIMPLE
GO
ALTER DATABASE [SPS01_Config_db] SET READ_WRITE
GO
ALTER DATABASE [SPS01_Config_db] SET RECOVERY SIMPLE
GO
ALTER DATABASE [SPS01_Config_db] SET MULTI_USER
GO
ALTER DATABASE [SPS01_Config_db] SET PAGE_VERIFY TORN_PAGE_DETECTION
GO
ALTER DATABASE [SPS01_Config_db] SET DB_CHAINING OFF
Item Rating Information....
Total Votes: 5 - Rating: 2.60