my server need to change the time of siege war, i don't know how to change.
so! i remove all data from siege_info table and siege_resault_log table, for run
siege script again
After that i got new error like this:
[Only registered and activated users can see links. Click Here To Register...]
how to fix it ?
i got this error after i use this script
i thing something wrong on my script but i don't know where
for this error:
The conversion of a varchar data type to a datetime data type resulted in an out-of-range value.
i thing this from:
SELECT @v_strtime = SUBSTRING(@v_strtime,1,4)
bacause when i use like this:
SELECT @v_strtime = SUBSTRING(@v_strtime,4,1)
some function worked, but i don't know why i still got this error
[Only registered and activated users can see links. Click Here To Register...]
Anyone know please help me, please guide where to fix ?
please :confused:
(if i test restore new data base and new installation siege system evrything work but if i edit siege system from current system i got above error,so tried! my friend please help me)
so! i remove all data from siege_info table and siege_resault_log table, for run
siege script again
After that i got new error like this:
[Only registered and activated users can see links. Click Here To Register...]
how to fix it ?
i got this error after i use this script
Code:
USE [Character] GO /****** Object: UserDefinedFunction [dbo].[FN_BinDateToDateTime] Script Date: 01/10/2010 19:35:14 ******/ SET ANSI_NULLS ON GO SET QUOTED_IDENTIFIER OFF GO /****************************************************************************** 이 름 : dbo.FN_BinDateToDateTime 설 명 : Binary Date를 DateTime 형식으로 반환한다. 반환값 : 수정내역: Ver Date Author Description --------- ---------- --------------- ------------------------------------ 1.0 2006-05-05 Han Ji Wook 1. 초기생성 ******************************************************************************/ ALTER FUNCTION [dbo].[FN_BinDateToDateTime] ( @i_bin_time binary(4) ) RETURNS datetime AS BEGIN DECLARE @v_datetime datetime DECLARE @v_strAux varchar(20) DECLARE @v_strtime varchar(20) SET @v_strAux = CAST(CAST(@i_bin_time as int) as varchar(20)) IF len(@v_strAux) = 7 SELECT @v_strtime = '20100' + CAST(CAST(@i_bin_time as int) as varchar(20)) ELSE IF len(@v_strAux) = 8 SELECT @v_strtime = '2010' + CAST(CAST(@i_bin_time as int) as varchar(20)) ELSE SELECT @v_strtime = '201' + CAST(CAST(@i_bin_time as int) as varchar(20)) SELECT @v_strtime = SUBSTRING(@v_strtime,1,4) +'-'+SUBSTRING(@v_strtime,5,2) +'-'+SUBSTRING(@v_strtime,7,2) +' '+SUBSTRING(@v_strtime,9,2) +':'+SUBSTRING(@v_strtime,11,2) SELECT @v_datetime = CAST(@v_strtime as datetime) RETURN @v_datetime END
i thing something wrong on my script but i don't know where
for this error:
The conversion of a varchar data type to a datetime data type resulted in an out-of-range value.
i thing this from:
SELECT @v_strtime = SUBSTRING(@v_strtime,1,4)
bacause when i use like this:
SELECT @v_strtime = SUBSTRING(@v_strtime,4,1)
some function worked, but i don't know why i still got this error
[Only registered and activated users can see links. Click Here To Register...]
Anyone know please help me, please guide where to fix ?
please :confused:
(if i test restore new data base and new installation siege system evrything work but if i edit siege system from current system i got above error,so tried! my friend please help me)