代码搜索:sql
找到约 10,000 项符合「sql」的源代码
代码结果 10,000
www.eeworm.com/read/399273/2363486
sql nas.sql
/*
* Table structure for table 'nas'
*/
CREATE TABLE nas (
id SERIAL PRIMARY KEY,
nasname VARCHAR(128) NOT NULL,
shortname VARCHAR(32) NOT NULL,
type VARCHAR(30) NOT NULL DEFAULT 'other',
po
www.eeworm.com/read/399273/2363490
sql schema.sql
/*
* $Id$
*
* Postgresql schema for FreeRADIUS
*
* All field lengths need checking as some are still suboptimal. -pnixon 2003-07-13
*
*/
/*
* Table structure for table 'radacct'
*
* Note: C
www.eeworm.com/read/399273/2363492
sql schema.sql
/***************************************************************************
* $Id$ *
* *
* db_mssql.sql *
*
www.eeworm.com/read/399273/2363495
sql ippool.sql
CREATE TABLE radippool (
id INT PRIMARY KEY,
pool_name VARCHAR(30) NOT NULL,
framedipaddress VARCHAR(30) NOT NULL,
nasipaddre
www.eeworm.com/read/399273/2363496
sql nas.sql
/*
* Table structure for table 'nas'
*/
CREATE TABLE nas (
id INT PRIMARY KEY,
nasname VARCHAR(128),
shortname VARCHAR(32),
type VARCHAR(30),
ports INT,
secret VARCHAR(60),
/*
server
www.eeworm.com/read/399273/2363498
sql schema.sql
/*
* $Id$
*
* Oracle schema for FreeRADIUS
*
*
* NOTE: Which columns are NULLable??
*/
/*
* Table structure for table 'radacct'
*/
CREATE TABLE radacct (
radacctid INT PRIMARY KEY,
acctse
www.eeworm.com/read/399270/2363538
sql rmsdb.sql
if exists (select * from dbo.sysobjects where id = object_id(N'[dbo].[历史数据]') and OBJECTPROPERTY(id, N'IsUserTable') = 1)
drop table [dbo].[历史数据]
GO
CREATE TABLE [dbo].[历史数据] (
[年] [int] NULL ,
www.eeworm.com/read/399260/2363885
sql selectroombytype.sql
IF EXISTS (SELECT * FROM sysobjects WHERE type = 'P' AND name = 'Select_RoomInfoByType')
BEGIN
PRINT 'Dropping Procedure Select_RoomInfoByType'
DROP Procedure Select_RoomInfoByType
END
www.eeworm.com/read/399260/2363889
sql selecttotalroominfo.sql
IF EXISTS (SELECT * FROM sysobjects WHERE type = 'P' AND name = 'Select_TotalRoomInfo')
BEGIN
PRINT 'Dropping Procedure Select_TotalRoomInfo'
DROP Procedure Select_TotalRoomInfo
END
GO
www.eeworm.com/read/399260/2363890
sql updateroomtypebytid.sql
IF EXISTS (SELECT * FROM sysobjects WHERE type = 'P' AND name = 'UpdateRoomTypeByTid')
BEGIN
PRINT 'Dropping Procedure UpdateRoomTypeByTid'
DROP Procedure UpdateRoomTypeByTid
END
GO