Hello Elitepvpers, I looked everywhere before I posted can't find that answer, I downloaded this from Teddy its EP5 and it came with this New installation SQL and It failed becase I need to place in my info and I was wondering where do I place it? on this script or if im allowed if so where? thx.
ps: Sorry I misspelled the thread I "Help" is what I meant to say.
Quote:
/* Add server link, and Shaiya username */
IF NOT EXISTS (SELECT [name] FROM master.dbo.syslogins WHERE name = 'Shaiya')
BEGIN
EXEC sp_addlogin 'LIDA9493Mm', '1502SI2806mM', 'PS_GameDefs';
END
EXEC sp_addsrvrolemember 'LIDA9493Mm', 'sysadmin';
if exists(select *
from master..sysservers
where isremote=1 and srvname='game')
begin
exec sp_dropserver 'game','droplogins'
end
exec sp_addlinkedserver 'game','','SQLOLEDB','127.0.0.1'
exec sp_addlinkedsrvlogin 'game','false',null,'LIDA9493Mm','1502SI2806mM'
if exists(select *
from master..sysservers
where isremote=1 and srvname='PS_NCASH')
begin
exec sp_dropserver 'PS_NCASH','droplogins'
end
exec sp_addlinkedserver 'PS_NCASH','','SQLOLEDB','127.0.0.1'
exec sp_addlinkedsrvlogin 'PS_NCASH','false',null,'LIDA9493Mm','1502SI2806mM '
if exists(select *
from master..sysservers
where isremote=1 and srvname='PS_USERDB')
begin
exec sp_dropserver 'PS_USERDB','droplogins'
end
exec sp_addlinkedserver 'PS_USERDB','','SQLOLEDB','127.0.0.1'
exec sp_addlinkedsrvlogin 'PS_USERDB','false',null,'LIDA9493Mm','1502SI2806m M'
if exists(select *
from master..sysservers
where isremote=1 and srvname='PS_USERDB01')
begin
exec sp_dropserver 'PS_USERDB01','droplogins'
end
exec sp_addlinkedserver 'PS_USERDB01','','SQLOLEDB','127.0.0.1'
exec sp_addlinkedsrvlogin 'PS_USERDB01','false',null,'LIDA9493Mm','1502SI280 6mM'
if exists(select *
from master..sysservers
where isremote=1 and srvname='PS_DEFINEDB')
begin
exec sp_dropserver 'PS_DEFINEDB','droplogins'
end
exec sp_addlinkedserver 'PS_DEFINEDB','','SQLOLEDB','127.0.0.1'
exec sp_addlinkedsrvlogin 'PS_DEFINEDB','false',null,'LIDA9493Mm','1502SI280 6mM'
if exists(select *
from master..sysservers
where isremote=1 and srvname='PS_GAMEDB01')
begin
exec sp_dropserver 'PS_GAMEDB01','droplogins'
end
exec sp_addlinkedserver 'PS_GAMEDB01','','SQLOLEDB','127.0.0.1'
exec sp_addlinkedsrvlogin 'PS_GAMEDB01','false',null,'LIDA9493Mm','1502SI280 6mM'
/* Add to Game User: admin, Password: admin123 and user information*/
IF NOT EXISTS (SELECT UserUID FROM PS_UserData.dbo.Users_Master WHERE UserUID=1)
BEGIN
INSERT INTO PS_UserData.dbo.Users_Master
(UserUID, UserID, Pw, JoinDate, Admin, AdminLevel, UseQueue, Status, Leave, LeaveDate, UserType, UserIp, ModiIp, ModiDate, Enpassword, Point)
VALUES (1,'gmlight', 'gmlight123', GETDATE(), 1, 255,'',16,'', DATEADD(year, +10, GETDATE()),'A',NULL,NULL,NULL,NULL,0);
END
IF NOT EXISTS (SELECT UserUID FROM OMG_GameWEB.dbo.GameAccountTBL WHERE UserUID=1)
BEGIN
INSERT INTO OMG_GameWEB.dbo.GameAccountTBL
(UserUID,GameAccount,OneTimePassword,OTPExpireDate ,DelCharPWD,CreateDate)
VALUES (1,'gmlight','gmlight123',DATEADD(year, +20, GETDATE()),'ff',GETDATE())
END
IF NOT EXISTS (SELECT UserUID FROM PS_UserData.dbo.Users_Detail WHERE UserUID=1)
BEGIN
INSERT INTO PS_UserData.dbo.Users_Detail
(UserID,UserUID,UserName,SocialNo1,SocialNo2,PwQue stion,PwAnswer,Email,PostNo,Addr1,Addr2,Phone1,
Phone2,Phone3,Mobile1,Mobile2,Mobile3,NewsLetter,S ms,AdultAuth,AdultAuthDate,EmailAuth,EmailAuthKey,
Job,JobNo,LocalNo,PwQuNo)
VALUES ('gmlight',1,'Light',NULL,NULL,'question','answer' ,'email@somewhere',NULL,NULL,NULL,NULL,NULL,NULL,N ULL,NULL,NULL,'0','0',
'0',NULL,'0',NULL,NULL,NULL,NULL,NULL)
END
OMG_GameWEB GameAccountTBL you don't need those in your Databse
Thats the right script for Linked servers
Quote:
/* Add linked servers */
IF NOT EXISTS (SELECT srvname FROM master..sysservers WHERE srvname='game')
BEGIN
EXEC sp_addlinkedserver 'game','','SQLOLEDB','127.0.0.1';
EXEC sp_addlinkedsrvlogin 'game','false',null,'UserID','UserPass';
END
IF NOT EXISTS (SELECT srvname FROM master..sysservers WHERE srvname='PS_DEFINEDB')
BEGIN
EXEC sp_addlinkedserver 'PS_DEFINEDB','','SQLOLEDB','127.0.0.1';
EXEC sp_addlinkedsrvlogin 'PS_DEFINEDB','false',null,'UserID','UserPass';
END
IF NOT EXISTS (SELECT srvname FROM master..sysservers WHERE srvname='PS_NCASH')
BEGIN
EXEC sp_addlinkedserver 'PS_NCASH','','SQLOLEDB','127.0.0.1';
EXEC sp_addlinkedsrvlogin 'PS_NCASH','false',null,'UserID','UserPass';
END
IF NOT EXISTS (SELECT srvname FROM master..sysservers WHERE srvname='PS_USERDB')
BEGIN
EXEC sp_addlinkedserver 'PS_USERDB','','SQLOLEDB','127.0.0.1';
EXEC sp_addlinkedsrvlogin 'PS_USERDB','false',null,'UserID','UserPass';
END
IF NOT EXISTS (SELECT srvname FROM master..sysservers WHERE srvname='PS_GAMEDB01')
BEGIN
EXEC sp_addlinkedserver 'PS_GAMEDB01','','SQLOLEDB','127.0.0.1';
EXEC sp_addlinkedsrvlogin 'PS_GAMEDB01','false',null,'UserID','UserPass';
END
IF NOT EXISTS (SELECT srvname FROM master..sysservers WHERE srvname='PS_USERDB01')
BEGIN
EXEC sp_addlinkedserver 'PS_USERDB01','','SQLOLEDB','127.0.0.1';
EXEC sp_addlinkedsrvlogin 'PS_USERDB01','false',null,'UserID','UserPass';
END
Server Core Installation oder Vollständige Installation ? 11/30/2012 - Flyff Private Server - 1 Replies Da es mit Windows Server 2012 ein paar Problemchen gabe, habe ich mich dazu entschlossen auf Windows Server 2008 um zu steigen, nun wollte ich euch fragen, was für eine Installation ? Und was bedeudet eigentlich Server Corehttp://i.epvpimg.com/FhQOe.png
[B] Wordpress Installation + Theme Installation&Anpassung + Einrichtung [S]EGold & PP 11/23/2012 - elite*gold Trading - 2 Replies Hallo,
Biete
Wordpress Installation
Theme Installation & Anpassung an deine Wünsche (Gute Premium Themes gibt es bei z.b. Premium WordPress Themes oder Woo themes // Nicht im Preis inbegriffen, wird dazu berechnet // Gerne könnt ihr auch Free Themes nutzen, allerdings empfehle ich Premium Themes, da sie sauberer programmiert sind)
EP6 Shaiya Private Server Installation: Help? 11/12/2012 - Shaiya Private Server - 3 Replies After succeeding in installing my EP5.1 server, I moved on to EP6 so that the work I did on the server would be in the newest version and I wouldn't have to do a ton of updates. I am working on installing the server now and keep running into the same problem.
The services are all installed (all have green pause buttons next to them). All of the passwords match the MySQL login information. However, whenever I start up the services a few of the pauses turn into arrows but quickly flash back to...
[Biete] Sprachpatch installation [Suche] 50 e*gold pro Installation 04/04/2012 - Origin Trading - 0 Replies Ich biete hier absofort meinen Installationsdienst an.
Ich installiere die Sprachpatches per Teamviewer. Ich nehme pro Installation 50 e*gold.
Welche datein braucht ihr schonmal?
Ihr braucht die Aktuellsten Sprachdatein, also GDF Binary's, Loc. Datein usw. Alles weitere besprechen wir per Skype.
Skype addy : sanman.own3d.