Compare commits
2 commits
5c596af77f
...
b1383770ff
Author | SHA1 | Date | |
---|---|---|---|
|
b1383770ff | ||
|
7415379d03 |
9 changed files with 469 additions and 0 deletions
BIN
SQL/1_tables/0 tblTemplate.txt
Normal file
BIN
SQL/1_tables/0 tblTemplate.txt
Normal file
Binary file not shown.
54
SQL/1_tables/tblAlignments.sql
Normal file
54
SQL/1_tables/tblAlignments.sql
Normal file
|
@ -0,0 +1,54 @@
|
|||
/* ************************************************************************* *
|
||||
*
|
||||
* Datei: tblAlignments.sql
|
||||
*
|
||||
* Aufgabe: Tabelle tblAlignments anlegen
|
||||
*
|
||||
* Aenderungen:
|
||||
* 2021-09-23, MWN, erstellt.
|
||||
*
|
||||
* ************************************************************************* */
|
||||
|
||||
if not exists (select * from sys.tables where object_id = object_id (N'tblAlignments')) begin
|
||||
|
||||
-- Protokollausgabe
|
||||
print 'Anlegen der Tabelle <' + db_name() + '.dbo.tblAlignments>'
|
||||
|
||||
-- drop table tblAlignments
|
||||
create table tblAlignments (
|
||||
|
||||
-- Primaerschluessel
|
||||
constraint [PK_tblAlignments] primary key ([key])
|
||||
, [key] int identity(1, 1) not null
|
||||
|
||||
-- ----------------------------------------------------------------------
|
||||
-- Parameter
|
||||
-- ----------------------------------------------------------------------
|
||||
, [description] nvarchar(250) NOT NULL
|
||||
|
||||
)
|
||||
|
||||
-- Alle 9 Alignments einfügen
|
||||
insert into tblAlignments ([description])
|
||||
values (N'Lawful Good'), (N'Neutral Good'), (N'Chaotic Good'), (N'Lawful Neutral'), (N'Neutral'), (N'Chaotic Neutral'), (N'Lawful Evil'), (N'Neutral Evil'), (N'Chaotic Evil')
|
||||
|
||||
if not exists (select * from sys.tables where object_id = object_id ('tblAlignments')) begin
|
||||
print ''
|
||||
print '************************************'
|
||||
print 'Fehler beim Erstellen der Tabelle tblAlignments'
|
||||
print '************************************'
|
||||
print ''
|
||||
end
|
||||
|
||||
end /*else begin -- [if not exists (Tabelle)...]
|
||||
|
||||
-- Hinzufuegen einer Spalte
|
||||
if not exists (select * from syscolumns where name = 'nSeqDataXLink' and id = object_id('tblAlignments') and objectproperty(id, N'IsUserTable') = 1) begin
|
||||
print 'alter table tblAlignments add nSeqDataXLink bigint null'
|
||||
alter table tblAlignments add nSeqDataXLink bigint null
|
||||
end
|
||||
|
||||
end -- [if not exists (Tabelle)...]*/
|
||||
go
|
||||
|
||||
-- :EOF:
|
68
SQL/1_tables/tblArmors.sql
Normal file
68
SQL/1_tables/tblArmors.sql
Normal file
|
@ -0,0 +1,68 @@
|
|||
/* ************************************************************************* *
|
||||
*
|
||||
* Datei: tblArmors.sql
|
||||
*
|
||||
* Aufgabe: Tabelle tblArmors anlegen
|
||||
*
|
||||
* Aenderungen:
|
||||
* 2021-09-23, MWN, erstellt.
|
||||
*
|
||||
* ************************************************************************* */
|
||||
|
||||
if not exists (select * from sys.tables where object_id = object_id (N'tblArmors')) begin
|
||||
|
||||
-- Protokollausgabe
|
||||
print 'Anlegen der Tabelle <' + db_name() + '.dbo.tblArmors>'
|
||||
|
||||
-- drop table tblArmors
|
||||
create table tblArmors (
|
||||
|
||||
-- Primaerschluessel
|
||||
constraint [PK_tblArmors] primary key ([key])
|
||||
, [key] int identity(1, 1) not null
|
||||
|
||||
-- ----------------------------------------------------------------------
|
||||
-- Allgemeine Parameter
|
||||
-- ----------------------------------------------------------------------
|
||||
, [created] DateTime NOT NULL
|
||||
, [lastModified] DateTime NOT NULL
|
||||
|
||||
-- ----------------------------------------------------------------------
|
||||
-- Parameter
|
||||
-- ----------------------------------------------------------------------
|
||||
, [name] nvarchar(250) NOT NULL
|
||||
, [category] nvarchar(250) NOT NULL
|
||||
, [cost] int NOT NULL
|
||||
, [currency] nvarchar(250) NOT NULL
|
||||
, [armorbonus] int NOT NULL
|
||||
, [maxDexBonus] int NOT NULL
|
||||
, [ArmorCheckPenalty] int NOT NULL
|
||||
, [ArcaneSpellFailureChance] int NOT NULL
|
||||
, [speed30] int NOT NULL
|
||||
, [speed20] int NOT NULL
|
||||
, [weight] int NOT NULL
|
||||
, [hasMetal] bit NOT NULL
|
||||
, [special] nvarchar(max) NOT NULL
|
||||
|
||||
)
|
||||
|
||||
if not exists (select * from sys.tables where object_id = object_id ('tblArmors')) begin
|
||||
print ''
|
||||
print '************************************'
|
||||
print 'Fehler beim Erstellen der Tabelle tblArmors'
|
||||
print '************************************'
|
||||
print ''
|
||||
end
|
||||
|
||||
end /*else begin -- [if not exists (Tabelle)...]
|
||||
|
||||
-- Hinzufuegen einer Spalte
|
||||
if not exists (select * from syscolumns where name = 'nSeqDataXLink' and id = object_id('tblArmors') and objectproperty(id, N'IsUserTable') = 1) begin
|
||||
print 'alter table tblArmors add nSeqDataXLink bigint null'
|
||||
alter table tblArmors add nSeqDataXLink bigint null
|
||||
end
|
||||
|
||||
end -- [if not exists (Tabelle)...]*/
|
||||
go
|
||||
|
||||
-- :EOF:
|
104
SQL/1_tables/tblCharacter.sql
Normal file
104
SQL/1_tables/tblCharacter.sql
Normal file
|
@ -0,0 +1,104 @@
|
|||
/* ************************************************************************* *
|
||||
*
|
||||
* Datei: tblCharacter.sql
|
||||
*
|
||||
* Aufgabe: Tabelle tblCharacter anlegen
|
||||
*
|
||||
* Aenderungen:
|
||||
* 2021-09-23, MWN, erstellt.
|
||||
*
|
||||
* ************************************************************************* */
|
||||
|
||||
if not exists (select * from sys.tables where object_id = object_id (N'tblCharacter')) begin
|
||||
|
||||
-- Protokollausgabe
|
||||
print 'Anlegen der Tabelle <' + db_name() + '.dbo.tblCharacter>'
|
||||
|
||||
-- drop table tblCharacter
|
||||
create table tblCharacter (
|
||||
|
||||
-- Primaerschluessel
|
||||
constraint [PK_tblCharacter] primary key ([key])
|
||||
, [key] int identity(1, 1) not null
|
||||
|
||||
-- ----------------------------------------------------------------------
|
||||
-- Allgemeine Parameter
|
||||
-- ----------------------------------------------------------------------
|
||||
, [created] DateTime NOT NULL
|
||||
, [lastModified] DateTime NOT NULL
|
||||
|
||||
-- ----------------------------------------------------------------------
|
||||
-- Parameter
|
||||
-- ----------------------------------------------------------------------
|
||||
, [playerLink] int NOT NULL
|
||||
, [groupLink] int NOT NULL
|
||||
, [classLink] int NOT NULL
|
||||
, [raceLink] int NOT NULL
|
||||
, [alignmentLink] int NOT NULL
|
||||
, [deityLink] int NOT NULL
|
||||
, [sizeLink] int NOT NULL
|
||||
, [name] nvarchar(250) NOT NULL
|
||||
, [level] int NOT NULL
|
||||
, [age] int NOT NULL
|
||||
, [gender] nvarchar(250) NOT NULL
|
||||
, [height] decimal NOT NULL
|
||||
, [weight] decimal NOT NULL
|
||||
, [eyes] nvarchar(250) NOT NULL
|
||||
, [hair] nvarchar(250) NOT NULL
|
||||
, [skin] nvarchar(250) NOT NULL
|
||||
, [strength] int NOT NULL
|
||||
, [dexterity] int NOT NULL
|
||||
, [constitution] int NOT NULL
|
||||
, [intelligence] int NOT NULL
|
||||
, [wisdom] int NOT NULL
|
||||
, [charisma] int NOT NULL
|
||||
, [strengthtemp] int NULL
|
||||
, [dexteritytemp] int NULL
|
||||
, [constitutiontemp] int NULL
|
||||
, [intelligencetemp] int NULL
|
||||
, [wisdomtemp] int NULL
|
||||
, [charismatemp] int NULL
|
||||
, [fortitude] int NOT NULL
|
||||
, [reflex] int NOT NULL
|
||||
, [will] int NOT NULL
|
||||
, [baseAttack] int NOT NULL
|
||||
, [hp] int NOT NULL
|
||||
, [tempHp] int NOT NULL
|
||||
, [nonLethalDmg] int NOT NULL
|
||||
, [speed] int NOT NULL
|
||||
, [dmgReduction] int NOT NULL
|
||||
, [spellResistance] int NOT NULL
|
||||
, [miscInitiative] int NULL
|
||||
, [miscArmor] int NULL
|
||||
, [miscFortitude] int NULL
|
||||
, [miscReflex] int NULL
|
||||
, [miscWill] int NULL
|
||||
, [miscGrapple] int NULL
|
||||
, [exp] int NOT NULL
|
||||
, [copper] int NOT NULL
|
||||
, [silver] int NOT NULL
|
||||
, [gold] int NOT NULL
|
||||
, [platin] int NOT NULL
|
||||
,
|
||||
)
|
||||
|
||||
if not exists (select * from sys.tables where object_id = object_id ('tblCharacter')) begin
|
||||
print ''
|
||||
print '************************************'
|
||||
print 'Fehler beim Erstellen der Tabelle tblCharacter'
|
||||
print '************************************'
|
||||
print ''
|
||||
end
|
||||
|
||||
end /*else begin -- [if not exists (Tabelle)...]
|
||||
|
||||
-- Hinzufuegen einer Spalte
|
||||
if not exists (select * from syscolumns where name = 'nSeqDataXLink' and id = object_id('tblCharacter') and objectproperty(id, N'IsUserTable') = 1) begin
|
||||
print 'alter table tblCharacter add nSeqDataXLink bigint null'
|
||||
alter table tblCharacter add nSeqDataXLink bigint null
|
||||
end
|
||||
|
||||
end -- [if not exists (Tabelle)...]*/
|
||||
go
|
||||
|
||||
-- :EOF:
|
62
SQL/1_tables/tblDeities.sql
Normal file
62
SQL/1_tables/tblDeities.sql
Normal file
|
@ -0,0 +1,62 @@
|
|||
/* ************************************************************************* *
|
||||
*
|
||||
* Datei: tblDeities.sql
|
||||
*
|
||||
* Aufgabe: Tabelle tblDeities anlegen
|
||||
*
|
||||
* Aenderungen:
|
||||
* 2021-09-23, MWN, erstellt.
|
||||
*
|
||||
* ************************************************************************* */
|
||||
|
||||
if not exists (select * from sys.tables where object_id = object_id (N'tblDeities')) begin
|
||||
|
||||
-- Protokollausgabe
|
||||
print 'Anlegen der Tabelle <' + db_name() + '.dbo.tblDeities>'
|
||||
|
||||
-- drop table tblDeities
|
||||
create table tblDeities (
|
||||
|
||||
-- Primaerschluessel
|
||||
constraint [PK_tblDeities] primary key ([key])
|
||||
, [key] int identity(1, 1) not null
|
||||
|
||||
-- ----------------------------------------------------------------------
|
||||
-- Allgemeine Parameter
|
||||
-- ----------------------------------------------------------------------
|
||||
, [created] DateTime NOT NULL
|
||||
, [lastModified] DateTime NOT NULL
|
||||
|
||||
-- ----------------------------------------------------------------------
|
||||
-- Parameter
|
||||
-- ----------------------------------------------------------------------
|
||||
, [name] nvarchar(250) NOT NULL
|
||||
, [alignmentLink] int NOT NULL
|
||||
, [portfolio] nvarchar(250) NOT NULL
|
||||
, [description] nvarchar(max) NOT NULL
|
||||
, [favoredWeaponLink] int NOT NULL
|
||||
|
||||
|
||||
|
||||
)
|
||||
|
||||
if not exists (select * from sys.tables where object_id = object_id ('tblDeities')) begin
|
||||
print ''
|
||||
print '************************************'
|
||||
print 'Fehler beim Erstellen der Tabelle tblDeities'
|
||||
print '************************************'
|
||||
print ''
|
||||
end
|
||||
|
||||
end /*else begin -- [if not exists (Tabelle)...]
|
||||
|
||||
-- Hinzufuegen einer Spalte
|
||||
if not exists (select * from syscolumns where name = 'nSeqDataXLink' and id = object_id('tblDeities') and objectproperty(id, N'IsUserTable') = 1) begin
|
||||
print 'alter table tblDeities add nSeqDataXLink bigint null'
|
||||
alter table tblDeities add nSeqDataXLink bigint null
|
||||
end
|
||||
|
||||
end -- [if not exists (Tabelle)...]*/
|
||||
go
|
||||
|
||||
-- :EOF:
|
57
SQL/1_tables/tblDeity2Domain.sql
Normal file
57
SQL/1_tables/tblDeity2Domain.sql
Normal file
|
@ -0,0 +1,57 @@
|
|||
/* ************************************************************************* *
|
||||
*
|
||||
* Datei: tblDeity2Domain.sql
|
||||
*
|
||||
* Aufgabe: Tabelle tblDeity2Domain anlegen
|
||||
*
|
||||
* Aenderungen:
|
||||
* 2021-09-23, MWN, erstellt.
|
||||
*
|
||||
* ************************************************************************* */
|
||||
|
||||
if not exists (select * from sys.tables where object_id = object_id (N'tblDeity2Domain')) begin
|
||||
|
||||
-- Protokollausgabe
|
||||
print 'Anlegen der Tabelle <' + db_name() + '.dbo.tblDeity2Domain>'
|
||||
|
||||
-- drop table tblDeity2Domain
|
||||
create table tblDeity2Domain (
|
||||
|
||||
-- Primaerschluessel
|
||||
constraint [PK_tblDeity2Domain] primary key ([key])
|
||||
, [key] int identity(1, 1) not null
|
||||
|
||||
-- ----------------------------------------------------------------------
|
||||
-- Allgemeine Parameter
|
||||
-- ----------------------------------------------------------------------
|
||||
, [created] DateTime NOT NULL
|
||||
, [lastModified] DateTime NOT NULL
|
||||
|
||||
-- ----------------------------------------------------------------------
|
||||
-- Parameter
|
||||
-- ----------------------------------------------------------------------
|
||||
, [deityLink] int NOT NULL
|
||||
, [domainLink] int NOT NULL
|
||||
|
||||
)
|
||||
|
||||
if not exists (select * from sys.tables where object_id = object_id ('tblDeity2Domain')) begin
|
||||
print ''
|
||||
print '************************************'
|
||||
print 'Fehler beim Erstellen der Tabelle tblDeity2Domain'
|
||||
print '************************************'
|
||||
print ''
|
||||
end
|
||||
|
||||
end /*else begin -- [if not exists (Tabelle)...]
|
||||
|
||||
-- Hinzufuegen einer Spalte
|
||||
if not exists (select * from syscolumns where name = 'nSeqDataXLink' and id = object_id('tblDeity2Domain') and objectproperty(id, N'IsUserTable') = 1) begin
|
||||
print 'alter table tblDeity2Domain add nSeqDataXLink bigint null'
|
||||
alter table tblDeity2Domain add nSeqDataXLink bigint null
|
||||
end
|
||||
|
||||
end -- [if not exists (Tabelle)...]*/
|
||||
go
|
||||
|
||||
-- :EOF:
|
57
SQL/1_tables/tblDomains.sql
Normal file
57
SQL/1_tables/tblDomains.sql
Normal file
|
@ -0,0 +1,57 @@
|
|||
/* ************************************************************************* *
|
||||
*
|
||||
* Datei: tblDomains.sql
|
||||
*
|
||||
* Aufgabe: Tabelle tblDomains anlegen
|
||||
*
|
||||
* Aenderungen:
|
||||
* 2021-09-23, MWN, erstellt.
|
||||
*
|
||||
* ************************************************************************* */
|
||||
|
||||
if not exists (select * from sys.tables where object_id = object_id (N'tblDomains')) begin
|
||||
|
||||
-- Protokollausgabe
|
||||
print 'Anlegen der Tabelle <' + db_name() + '.dbo.tblDomains>'
|
||||
|
||||
-- drop table tblDomains
|
||||
create table tblDomains (
|
||||
|
||||
-- Primaerschluessel
|
||||
constraint [PK_tblDomains] primary key ([key])
|
||||
, [key] int identity(1, 1) not null
|
||||
|
||||
-- ----------------------------------------------------------------------
|
||||
-- Allgemeine Parameter
|
||||
-- ----------------------------------------------------------------------
|
||||
, [created] DateTime NOT NULL
|
||||
, [lastModified] DateTime NOT NULL
|
||||
|
||||
-- ----------------------------------------------------------------------
|
||||
-- Parameter
|
||||
-- ----------------------------------------------------------------------
|
||||
, [name] nvarchar(250) NOT NULL
|
||||
, [grantedPower] nvarchar(250) NOT NULL
|
||||
|
||||
)
|
||||
|
||||
if not exists (select * from sys.tables where object_id = object_id ('tblDomains')) begin
|
||||
print ''
|
||||
print '************************************'
|
||||
print 'Fehler beim Erstellen der Tabelle tblDomains'
|
||||
print '************************************'
|
||||
print ''
|
||||
end
|
||||
|
||||
end /*else begin -- [if not exists (Tabelle)...]
|
||||
|
||||
-- Hinzufuegen einer Spalte
|
||||
if not exists (select * from syscolumns where name = 'nSeqDataXLink' and id = object_id('tblDomains') and objectproperty(id, N'IsUserTable') = 1) begin
|
||||
print 'alter table tblDomains add nSeqDataXLink bigint null'
|
||||
alter table tblDomains add nSeqDataXLink bigint null
|
||||
end
|
||||
|
||||
end -- [if not exists (Tabelle)...]*/
|
||||
go
|
||||
|
||||
-- :EOF:
|
67
SQL/1_tables/tblWeapons.sql
Normal file
67
SQL/1_tables/tblWeapons.sql
Normal file
|
@ -0,0 +1,67 @@
|
|||
/* ************************************************************************* *
|
||||
*
|
||||
* Datei: tblWeapons.sql
|
||||
*
|
||||
* Aufgabe: Tabelle tblWeapons anlegen
|
||||
*
|
||||
* Aenderungen:
|
||||
* 2021-09-23, MWN, erstellt.
|
||||
*
|
||||
* ************************************************************************* */
|
||||
|
||||
if not exists (select * from sys.tables where object_id = object_id (N'tblWeapons')) begin
|
||||
|
||||
-- Protokollausgabe
|
||||
print 'Anlegen der Tabelle <' + db_name() + '.dbo.tblWeapons>'
|
||||
|
||||
-- drop table tblWeapons
|
||||
create table tblWeapons (
|
||||
|
||||
-- Primaerschluessel
|
||||
constraint [PK_tblWeapons] primary key ([key])
|
||||
, [key] int identity(1, 1) not null
|
||||
|
||||
-- ----------------------------------------------------------------------
|
||||
-- Allgemeine Parameter
|
||||
-- ----------------------------------------------------------------------
|
||||
, [created] DateTime NOT NULL
|
||||
, [lastModified] DateTime NOT NULL
|
||||
|
||||
-- ----------------------------------------------------------------------
|
||||
-- Parameter
|
||||
-- ----------------------------------------------------------------------
|
||||
, [name] nvarchar(250) NOT NULL
|
||||
, [category] nvarchar(250) NOT NULL
|
||||
, [cost] int NOT NULL
|
||||
, [currency] nvarchar(250) NOT NULL
|
||||
, [dmgSmall] nvarchar(250) NOT NULL
|
||||
, [dmgMedium] nvarchar(250) NOT NULL
|
||||
, [critrange] nvarchar(250) NOT NULL
|
||||
, [crit] int NOT NULL
|
||||
, [range] nvarchar(250) NOT NULL
|
||||
, [weight] int NOT NULL
|
||||
, [damagetype] nvarchar(250) NOT NULL
|
||||
, [special] nvarchar(250) NOT NULL
|
||||
|
||||
)
|
||||
|
||||
if not exists (select * from sys.tables where object_id = object_id ('tblWeapons')) begin
|
||||
print ''
|
||||
print '************************************'
|
||||
print 'Fehler beim Erstellen der Tabelle tblWeapons'
|
||||
print '************************************'
|
||||
print ''
|
||||
end
|
||||
|
||||
end /*else begin -- [if not exists (Tabelle)...]
|
||||
|
||||
-- Hinzufuegen einer Spalte
|
||||
if not exists (select * from syscolumns where name = 'nSeqDataXLink' and id = object_id('tblWeapons') and objectproperty(id, N'IsUserTable') = 1) begin
|
||||
print 'alter table tblWeapons add nSeqDataXLink bigint null'
|
||||
alter table tblWeapons add nSeqDataXLink bigint null
|
||||
end
|
||||
|
||||
end -- [if not exists (Tabelle)...]*/
|
||||
go
|
||||
|
||||
-- :EOF:
|
0
SQL/insert/InsertAlignments.sql
Normal file
0
SQL/insert/InsertAlignments.sql
Normal file
Loading…
Reference in a new issue