G
Guest
I have a heap of files with a "sql" extenision, I know they belong to a sql
data base, I want to know how I go about putting them into a access database,
I think they are querys to create the dataabase they belong to, there is
about 50 of these, they all start like this,
CREATE TABLE dbo.invBlueprintTypes(
blueprintTypeID INTEGER,
parentBlueprintTypeID INTEGER,
productTypeID INTEGER,
productionTime INTEGER,
techLevel INTEGER,
researchProductivityTime INTEGER,
researchMaterialTime INTEGER,
researchCopyTime INTEGER,
researchTechTime INTEGER,
productivityModifier INTEGER,
materialModifier INTEGER,
wasteFactor INTEGER,
chanceOfReverseEngineering DOUBLE PRECISION,
maxProductionLimit INTEGER);
INSERT INTO dbo.invBlueprintTypes
(blueprintTypeID,parentBlueprintTypeID,productTypeID,productionTime,techLevel,researchProductivityTime,researchMaterialTime,researchCopyTime,researchTechTime,productivityModifier,materialModifier,wasteFactor,chanceOfReverseEngineering,maxProductionLimit)
VALUES(679,,48,120,1,2400,2400,2400,24000,24,5,10,0,1500);
INSERT INTO dbo.invBlueprintTypes
(blueprintTypeID,parentBlueprintTypeID,productTypeID,productionTime,techLevel,researchProductivityTime,researchMaterialTime,researchCopyTime,researchTechTime,productivityModifier,materialModifier,wasteFactor,chanceOfReverseEngineering,maxProductionLimit)
VALUES(681,986,165,600,1,12000,12000,12000,120000,120,5,10,0,300);
but not sure how to put that info into access,
thanks
data base, I want to know how I go about putting them into a access database,
I think they are querys to create the dataabase they belong to, there is
about 50 of these, they all start like this,
CREATE TABLE dbo.invBlueprintTypes(
blueprintTypeID INTEGER,
parentBlueprintTypeID INTEGER,
productTypeID INTEGER,
productionTime INTEGER,
techLevel INTEGER,
researchProductivityTime INTEGER,
researchMaterialTime INTEGER,
researchCopyTime INTEGER,
researchTechTime INTEGER,
productivityModifier INTEGER,
materialModifier INTEGER,
wasteFactor INTEGER,
chanceOfReverseEngineering DOUBLE PRECISION,
maxProductionLimit INTEGER);
INSERT INTO dbo.invBlueprintTypes
(blueprintTypeID,parentBlueprintTypeID,productTypeID,productionTime,techLevel,researchProductivityTime,researchMaterialTime,researchCopyTime,researchTechTime,productivityModifier,materialModifier,wasteFactor,chanceOfReverseEngineering,maxProductionLimit)
VALUES(679,,48,120,1,2400,2400,2400,24000,24,5,10,0,1500);
INSERT INTO dbo.invBlueprintTypes
(blueprintTypeID,parentBlueprintTypeID,productTypeID,productionTime,techLevel,researchProductivityTime,researchMaterialTime,researchCopyTime,researchTechTime,productivityModifier,materialModifier,wasteFactor,chanceOfReverseEngineering,maxProductionLimit)
VALUES(681,986,165,600,1,12000,12000,12000,120000,120,5,10,0,300);
but not sure how to put that info into access,
thanks