Viewing 15 posts - 14,761 through 14,775 (of 26,486 total)
To get the best help possible from this forum (or any other) please read and follow the instructions in the first article I have referenced below in my signature block...
January 29, 2011 at 10:21 am
Hate to burst my own bubble, but there is a bug in my code. The code as posted will only work if there is no gap in the first...
January 29, 2011 at 12:16 am
Two more options. Option 2 allows you to use the function in a CROSS APPLY in a query instead of using the Scalar UDF in the select part of...
January 28, 2011 at 5:09 pm
Sounds like a bad cached plan. Try adding the WITH RECOMPILE option to the store procedure.
January 28, 2011 at 2:20 pm
Please read the second article in my signature block below regard getting help with performance problems (or something to that effect). It will show you what you need to...
January 28, 2011 at 10:17 am
thangirala.anitha (1/27/2011)
Date datatype we can't send as input parameter in function eventhough we can able to return a table.
Interesting. Here is code where I have an input parameter defined...
January 27, 2011 at 10:40 pm
You need to determine what the results should be and provide that. This is used to test our results as well as to understand the process that needs to...
January 27, 2011 at 10:14 pm
Please read the first article I reference below in my signature block regarding asking for help. Follow those instructions in what you should post to get the best help...
January 27, 2011 at 7:30 pm
PSB (1/27/2011)
DECLARE @TestStr VARCHAR(MAX)
SET @TestStr=' 5305 ...
January 27, 2011 at 7:16 pm
Duplicate post, please post all replies here.
Please, do not cross post as it simply fragments any responses you may get, and people may duplicate others answers.
January 27, 2011 at 6:59 pm
Duplicate post, please post all replies here.
Please, do not cross post as it simply fragments any responses you may get, and people may duplicate others answers.
January 27, 2011 at 6:59 pm
Based on what you have provided, here is what I came up with to solve your problem.
--drop table #temp
create table #TimeTemp(
...
January 27, 2011 at 6:56 pm
Does this help you get started?
declare @TestDate date;
set @TestDate = '20110401';
select @TestDate, DATEADD(mm,9,@TestDate), CAST(year(DATEADD(mm,9,@TestDate)) - 1 as VARCHAR) + '/' + RIGHT(CAST(year(DATEADD(mm,9,@TestDate)) as VARCHAR),2);
set @TestDate = '20120331';
select @TestDate, DATEADD(mm,9,@TestDate), CAST(year(DATEADD(mm,9,@TestDate))...
January 27, 2011 at 6:03 pm
jbon007 (1/27/2011)
i have this function which is not fully working. what it does is look at the date and work out our financial year. (financial year is from 1...
January 27, 2011 at 5:57 pm
Still missing the expected results based on the sample data. If everything runs correctly, what should the data look like?
January 27, 2011 at 5:49 pm
Viewing 15 posts - 14,761 through 14,775 (of 26,486 total)