Installing Apache 2.2
I have a hard time installing a plain Apache version in my PC (Windows 7). In my PC I have IIS and other Web server in place that I want to keep working as well. Here the steps to fallow: …
I have a hard time installing a plain Apache version in my PC (Windows 7). In my PC I have IIS and other Web server in place that I want to keep working as well. Here the steps to fallow: …
Query Version:
|
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 |
select
v2.* ,
b.desc ,
c.desc
from
b ,
c ,
(select * from
(
Select rownum rn , v1.*
From
(Select /*+ materialize no_merge */
t1.id1 , t2.id2, t1.col1 , t2.col2
from
t1 , t2
Where
<join clause>
And
<filter clause>
< group by clause>
<Order by clause>)v1
where
rn >1 and rn <=20) v2
where
v2.id1= b.id1
and v2.id2=c.id2; |
Source: http://www.dba-oracle.com/t_sql_pagination.htm (Query)
Configure .NET Applications Note: don’t modify anything:
|
1 2 3 4 5 6 |
<!-- The following section is to force use of Fiddler for all applications, including those running in service accounts -->
<system.net>
<defaultProxy>
<proxy autoDetect="false" bypassonlocal="false" proxyaddress="http://127.0.0.1:8888" usesystemdefault="false" />
</defaultProxy>
</system.net> |
Important: Regardless of other settings, .NET will always bypass the Fiddler proxy for URLs containing localhost. So, rather than using localhost, change your code to refer to the machine name. For instance: Does …