Viewing 15 posts - 11,656 through 11,670 (of 15,377 total)
That is one of two things. Either you can't see the sql server on the network (Can you ping it?) or the server does not allow remote connections. To check...
June 14, 2012 at 8:56 am
Or if your dates are not always in sequence you could do something like this.
;with cte as
(
select *, ROW_NUMBER() over(partition by ID order by ModifiedDate desc) as RowNum from @test-2
)
select...
June 14, 2012 at 8:51 am
TrippBlunschi (6/14/2012)
Sean Lange (6/14/2012)
select * from
(
select *, ROW_NUMBER() over(partition by ID order by ModifiedDate desc) as RowNum from...
June 14, 2012 at 8:49 am
If you google that error it seems the issues is much like what the description says, the application server is unable to communicate with sql. Given that your app has...
June 14, 2012 at 8:35 am
You are quite welcome. Fell free to post back if you have problems getting it implemented.
June 14, 2012 at 8:30 am
Or maybe it is just that the tools for it are horrible. The last time I worked with Oracle their query and admin tools were written in java and were...
June 14, 2012 at 8:23 am
Sounds like you maybe some network issues at that point or something. Glad to hear it is working now.
June 14, 2012 at 8:19 am
There are a few ways to do this. Here is one of them.
select * from
(
select *, ROW_NUMBER() over(partition by ID order by ModifiedDate desc) as RowNum from @test-2
) x
where RowNum...
June 14, 2012 at 8:11 am
June 14, 2012 at 8:05 am
Take a look at the article in my signature about splitting strings. The version Jeff wrote will blow the doors of the while loop style splitter. The article goes in...
June 14, 2012 at 8:01 am
That sounds like your application machine can't see the sql server. Can you ping the sql box from your app box and are the sql ports open in your firewall?
June 14, 2012 at 7:58 am
Great question Hugo.
Put me in the camp of answering too quickly. I guess I didn't consider adding a clustered index on another column. DOH!!! I read the section on...
June 14, 2012 at 7:53 am
isuckatsql (6/12/2012)
I also used the loop joins and nolock because they improved performance.
By combining CTE, loops joins and...
June 14, 2012 at 7:43 am
You are welcome. Did you also read the string splitter article? That splitter will blow the doors off just about anything for performance. It should be in everyone's arsenal of...
June 14, 2012 at 7:21 am
You need to either a bunch of response.writes with response.end or send error messages to the browser.
June 13, 2012 at 8:42 am
Viewing 15 posts - 11,656 through 11,670 (of 15,377 total)