Viewing 15 posts - 451 through 465 (of 1,114 total)
I got the solution.
Create proc P1_Show_EmpDetails
(
@EmpCode varchar(10) -- User may give more than one value as COMMA SEPERATED value
)
AS
BEGIN
Declare @_EmpCode varchar(10)
Select @_EmpCode = ','+ @EmpCode +','
Select Eno
from Emp
where patindex('%,' +...
September 11, 2008 at 8:37 am
Chris,
Thanks a lot. I appreciate your timely help !
September 11, 2008 at 3:09 am
what is the rowcount of import_cc_payments table ?
September 11, 2008 at 2:41 am
it is comment section, User will enter like this only, based on the comment i have split.
I reached some point, But i am unable to do it successfully.
Declare @holdingAndWeightAndComments varchar(255)
Select...
September 10, 2008 at 7:54 am
So the sequence which i said was correct according to Inside SQL Server 2005: T-SQL Querying
September 8, 2008 at 3:53 am
Try out this one.
sp_depends yourprocname
or
use sysdepends table.
September 4, 2008 at 2:32 am
Peso,
Can you help me to convert the below formula's also ?
http://www.styleadvisor.com/support/statistics/standard_deviation.html
http://www.styleadvisor.com/support/statistics/cumulative_return.html
http://www.styleadvisor.com/support/statistics/mean.html
http://www.styleadvisor.com/support/statistics/variance.html
September 4, 2008 at 2:31 am
Peso,
Thanks ! Sorry I don't have the test data. I will ask my manager and get back to you.
September 2, 2008 at 7:22 am
rbarryyoung,
Thanks a lot ! I really appreciate your timely help !:)
I have checked the procedure and fixed the issue sucessfully. Also i got the appreciation mail from my manager. Because...
September 1, 2008 at 6:15 am
rbarryyoung,
I got the above error message. Please check it.
August 29, 2008 at 6:49 am
Truncation error occured.
Command has been aborted.
August 29, 2008 at 6:47 am
I got it...:) Yes,Just i turn off the below one.
set arithabort off
is it a wise decision ?
I got the result now. It is matching with the excel report. so...
August 29, 2008 at 1:24 am
Can you attach the output get from the query ?
August 29, 2008 at 1:17 am
rbarryyoung,
Though i changed the table structure, I am getting the same error message.
create table PROD_issue
(
MID varchar(15),
Dt1 decimal(5,3),
Dt2 decimal(5,3),
Dt3 decimal(5,3),
Dt4 decimal(5,3),
Dt5 decimal(5,3),
Dt6 decimal(5,3),
Dt7 decimal(5,3),
Dt8 decimal(5,3),
Dt9 decimal(5,3),
Dt10 decimal(5,3),
Dt11 decimal(5,3),
Dt12 decimal(5,3)
)
go
August 29, 2008 at 1:14 am
rbarryyoung,
I am getting 'TRUNCATION ERROR OCCURED' message when i execute the code.
I think somewhere else data lenght is crossing the maximum limit. Please correct me if i am wrong.
Carl,
Joe's code...
August 29, 2008 at 1:08 am
Viewing 15 posts - 451 through 465 (of 1,114 total)