• Unfortunately, we have experienced significant hard drive damage that requires urgent maintenance and rebuilding. The forum will be a state of read only until we install our new drives and rebuild all the configurations needed. Please follow our Facebook page for updates, we will be back up shortly! (The forum could go offline at any given time due to the nature of the failed drives whilst awaiting the upgrades.) When you see an Incapsula error, you know we are in the process of migration.

[help] account creation

█║▌║▌║TheMerc iful║▌║▌║█
Loyal Member
Joined
Jan 29, 2005
Messages
1,367
Reaction score
80
does anybody have a query to manually create an account other than these 3 queries that i already have...

Code:
USE [Account]
exec dbo.cabal_tool_registerAccount 'ID' ,'PASS'
GO

Code:
USE [Account]
exec dbo.cabal_tool_registerAccount 'id' ,'psw', 'email'
GO

Code:
set ANSI_NULLS ON
set QUOTED_IDENTIFIER ON
go

ALTER  FUNCTION [dbo].[fn_md5]     @<i><b><a href="http://forum.ragezone.com/members/2000209952.html" target="_blank">Data</a></b></i> varchar(255)) 
RETURNS CHAR(32)  AS  
BEGIN
	return SUBSTRING(master.dbo.fn_varbintohexstr(HashBytes('MD5',    @<i><b><a href="http://forum.ragezone.com/members/2000209952.html" target="_blank">Data</a></b></i>)), 3, 32)
END


Exec dbo.cabal_tool_registeraccount 'XXX' , 'XXX'

4pLay - [help] account creation - RaGEZONE Forums

4pLay - [help] account creation - RaGEZONE Forums






got some error's everytime i execute them, maybe i missed something or i just can't see it infront of my eyes...

thank you god bless!
 
Last edited:
Newbie Spellweaver
Joined
Apr 4, 2014
Messages
19
Reaction score
1
try to use this

USE [ACCOUNT]
GO


DECLARE return_value int


EXEC return_value = [dbo].[cabal_tool_registerAccount]
id = N'test22',
password = N'1234',
email = N'test@gmail.com'


SELECT 'Return Value' = return_value


GO
 
Upvote 0
█║▌║▌║TheMerc iful║▌║▌║█
Loyal Member
Joined
Jan 29, 2005
Messages
1,367
Reaction score
80
try to use this

USE [ACCOUNT]
GO


DECLARE return_value int


EXEC return_value = [dbo].[cabal_tool_registerAccount]
id = N'test22',
password = N'1234',
email = N'test@gmail.com'


SELECT 'Return Value' = return_value


GO

need some help on steps to do when you install sql 2014?

4pLay - [help] account creation - RaGEZONE Forums


maybe i missed out something?
 
Upvote 0
█║▌║▌║TheMerc iful║▌║▌║█
Loyal Member
Joined
Jan 29, 2005
Messages
1,367
Reaction score
80
if you're using Cabal Pilipinas files much better is to convert database from 2014 to 2008 so any tools will work on it :)

yeah,.. so i downgraded my sql to 2k8 and it seems toasts DB's are not compatible with 2k14 sql. now everythin's ok but i have not yet started to up everythin' to cabal pilipinas files...
 
Upvote 0
Back
Top