Viewing 15 posts - 1 through 15 (of 39 total)
its differences like stored procedure returns 12.9% excel places it as 13.1%
September 29, 2014 at 6:57 pm
I am just pulling the data from stored procedure, if i execute same from excel i am getting variation in data. is there some thing I need to do in...
September 28, 2014 at 5:28 am
In stored procedure we are using numeric(38,2), will it make difference?
September 28, 2014 at 5:16 am
Hi,
Here adjacent records means consecutive date/days or consecutive months??
Surya
February 19, 2010 at 1:36 am
Here is another solution CTE and this is more genric than earlier solution
create table #Example
(
Company varchar(10),
Empno int,
Id int,
CourseId int,
Startdate datetime,
Stopdate ...
February 18, 2010 at 11:19 pm
Hi,
Hopefully i understood ur problem well
Here is the solution
create table #Example
(
Company varchar(10),
Empno int,
Id int,
CourseId int,
Startdate datetime,
Stopdate datetime
)
insert into...
February 18, 2010 at 10:18 pm
HI Jeff,
Thank you for your kind suggestion and help. Actually i am not using periods table its TIME Dimension and in IncomeStatement table i have no date i will stored...
February 16, 2010 at 6:49 am
Hi,
I got my problem solved by both Jeff and Chris solutions. I followed Jeff solution.
Thanks to all of you who spend their valuable time to me. I am...
February 15, 2010 at 6:36 pm
I need to insert into #IncomeStatement if a account in a department does not have any entries for a month both credit and debit as '0'
February 13, 2010 at 8:49 pm
Yeah the assumption is correct. I need to calculate if a transaction either credit or debit exists for each account in the department
February 13, 2010 at 8:44 pm
My Sincere apologies for my faulty sample data . I am thankful to you all for your valuable time to provide me solution. I will give try for the solutions...
February 13, 2010 at 10:24 am
I guess u need change the column data type to text or ntext if your using sql server 2005 onwards
Hope this will solve ur problem
Thanks,
Surya
January 29, 2010 at 3:52 am
Hi Jeff,
Yeah i found the link. Once again thanks for your kind help.
Thanks,
Surya
December 20, 2009 at 6:13 pm
Hi Jeff,
Thanks a ton for your kind help. Its working. Could you please explain a bit about quirky update So that i can reuse this when ever i need...
December 20, 2009 at 11:25 am
Hi Jeff,
I am able to carry forward ending balance to opening balance of next month, but ending balance of current month is being calculated properly.
Could you please help me in...
December 20, 2009 at 2:50 am
Viewing 15 posts - 1 through 15 (of 39 total)