Viewing 15 posts - 11,656 through 11,670 (of 15,381 total)
There are also a few people who didn't consider the possibility of unique constraints being defined in the same CREATE TABLE statement, for instance because they have the habit of...
June 14, 2012 at 9:34 am
At this point it seems the two of you are putting in far more effort on this than the OP. 😉
June 14, 2012 at 9:29 am
http://www.aicas.com/jamaica/3.4/doc/jamaica_api/java/net/NoRouteToHostException.html
This is almost certainly a network issue. Can you ping the sql box from your app box?
June 14, 2012 at 9:27 am
harri.reddy (6/14/2012)
alright it allows remote connection,what about ping ,how to do it?
Open a command prompt
ping [servername]
June 14, 2012 at 9:20 am
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
Viewing 15 posts - 11,656 through 11,670 (of 15,381 total)