代码搜索:sql
找到约 10,000 项符合「sql」的源代码
代码结果 10,000
www.eeworm.com/read/318039/3572688
sql schema.sql
###########################################################################
# $Id: schema.sql,v 1.8 2008/03/14 08:29:50 aland Exp $ #
#
www.eeworm.com/read/318039/3572691
sql ippool.sql
--
-- Table structure for table 'radippool'
--
CREATE TABLE radippool (
id BIGSERIAL PRIMARY KEY,
pool_name varchar(64) NOT NULL,
FramedIPAddress INET NOT NULL,
NASIPAddress VARCHAR(16) NOT
www.eeworm.com/read/318039/3572692
sql admin.sql
# -*- text -*-
##
## admin.sql -- PostgreSQL commands for creating the RADIUS user.
##
## WARNING: You should change 'localhost' and 'radpass'
## to something else. Also update raddb/sql.conf
##
www.eeworm.com/read/318039/3572694
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/318039/3572698
sql schema.sql
/*
* $Id: schema.sql,v 1.7 2007/11/15 20:21:03 pnixon Exp $
*
* Postgresql schema for FreeRADIUS
*
* All field lengths need checking as some are still suboptimal. -pnixon 2003-07-13
*
*/
/*
*
www.eeworm.com/read/318039/3572700
sql schema.sql
/***************************************************************************
* $Id: schema.sql,v 1.2 2008/04/17 06:32:36 aland Exp $ *
* *
* db_mssql.sql *
*
www.eeworm.com/read/318039/3572702
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/318039/3572703
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/318039/3572704
sql schema.sql
/*
* $Id: schema.sql,v 1.5 2007/09/14 18:32:56 pnixon Exp $
*
* Oracle schema for FreeRADIUS
*
*
* NOTE: Which columns are NULLable??
*/
/*
* Table structure for table 'radacct'
*/
CREATE TA
www.eeworm.com/read/317405/3581251
sql createimgtable.sql
if exists (select * from dbo.sysobjects where id = object_id(N'[dbo].[Image]') and OBJECTPROPERTY(id, N'IsUserTable') = 1)
drop table [dbo].[Image]
GO
CREATE TABLE [dbo].[Image] (
[ID] [int] IDEN