Viewing 15 posts - 19,246 through 19,260 (of 26,484 total)
ChrisMoix (8/12/2009)
Last time we hired a DBA I was stunned at how many applicants had good SQL skills, but Zero .NET, Zero CLR skills. I know, I know, some...
August 12, 2009 at 9:12 am
Faiyaaz (8/12/2009)
August 12, 2009 at 8:51 am
Please read the second article in my signature block regarding asking for assistance on performance problems. Based on your post, there really isn't much we can do to help...
August 12, 2009 at 8:34 am
NewbieCoding (8/12/2009)
@Col1 int = null,
@col2 datetime = NULL,
@col3 int = NULL
AS
BEGIN
-- SET NOCOUNT ON added to prevent extra result sets from
-- interfering with SELECT statements.
SET NOCOUNT ON
...
August 12, 2009 at 8:30 am
You will have to reinstall SQL Server 2005. There is no uninstall at this time for service packs. I think this may change in the future, possibly with...
August 12, 2009 at 8:04 am
descentflower (8/12/2009)
Thanks :w00t: thats what i neededIs this magic of recursion ?
I will be very thankful if you give a brief idea of that query.
Thanks again.
Read about Recursive CTE's...
August 12, 2009 at 7:55 am
rja.carnegie (8/12/2009)
August 12, 2009 at 7:52 am
WilliamB (8/12/2009)
Nevermind, I found it... 😀
What did you find? Details please, someone else may have the same question.
August 12, 2009 at 6:31 am
Not really sure what you are asking here. Could you provide more information about what you are trying to accomplish?
August 12, 2009 at 6:27 am
Hope this gets you started in the right direction. All I did was mimic the sample code from BOL (Books Online).
create table #t1 (id int,pid int,s varchar(100))
insert into #t1...
August 12, 2009 at 6:26 am
To get help faster and get working tested code, please read the first article I reference in my signature block regarding asking for assistance.
To really help you, we need the...
August 12, 2009 at 6:12 am
Why not change this:
AND (VV.Fund_Valuation_Date = (SELECT MAX (Fund_Valuation_Date)
FROM dbo.Fund_Valuation VVV
WHERE VVV.Fund_Valuation_Date < '2006-09-01'
AND VVV.Fund_Number = V.Fund_Number
AND VVV.Class_Type_Abbr_Name = V.Class_Type_Abbr_Name
AND VVV.Class_Type_Category = V.Class_Type_Category))
to this:
AND VV.Fund_Valuation_Date = (SELECT MAX (Fund_Valuation_Date)
FROM dbo.Fund_Valuation...
August 12, 2009 at 5:46 am
Actually, I may have figured it out. Took a lot of digging and guess work. Preliminary testing looks good, but it is late, and I really don't feel...
August 11, 2009 at 11:06 pm
drew.allen (8/11/2009)
alef (8/11/2009)
I've tried the solution of SSCrazy Eights and this solution is perfect.Is there an explanation why your solution is working and mine not?
I think that this line from...
August 11, 2009 at 9:26 pm
Viewing 15 posts - 19,246 through 19,260 (of 26,484 total)