17-09-2012, 08:17 PM
|
#9
|
|
• الانـتـسـاب » Feb 2008
|
• رقـم العـضـويـة » 12606
|
• المشـــاركـات » 471
|
• الـدولـة » ▅ ▃ ▂ام الدنيا ▂ ▃ ▅
|
• الـهـوايـة »
|
• اسـم الـسـيـرفـر » No Server
|
• الـجـنـس » Male
|
• نقـاط التقييم » 10
|
|
|
خود الكود ده هايشتغل تمام
اقتباس:
use [sro_vt_account]
go
/****** object: Table [dbo].[_privilegedip] script date: 09/17/2012 20:16:20 ******/
if exists (select * from sys.objects where object_id = object_id(n'[dbo].[_privilegedip]') and type in (n'u'))
drop table [dbo].[_privilegedip]
go
use [sro_vt_account]
go
/****** object: Table [dbo].[_privilegedip] script date: 09/17/2012 20:16:21 ******/
set ansi_nulls on
go
set quoted_identifier on
go
create table [dbo].[_privilegedip](
[ip1] [tinyint] not null,
[ip2] [tinyint] not null,
[ip3] [tinyint] not null,
[ip4] [tinyint] not null,
[ip5] [tinyint] not null,
[ip6] [tinyint] not null,
[ip7] [tinyint] not null,
[ip8] [tinyint] not null
) on [primary]
go
|
|
|
|