再见西城 发表于 2015-1-16 22:42:43

MYSQL网页设计Oracle客户穿越防火墙困难

业界普遍的声音认为:“MySQL是一个可靠的数据库系统,MySQL学习教程无论是在嵌入式或大型群集系统的部署中,还是在基于Web的应用程序领域。oracle|防火墙
最近因为事情必要,在WindowsXP平台上安装了Oracle9i数据库作为测试之用,统统一般。但当客户机毗连服务器时却老是超时,我起首想到了防火墙,当我翻开1521端口时,毗连操纵仍旧失利。我又嫌疑收集有成绩,用telnetserver_ip:1521实验,毗连被承受,申明1521端口已被翻开。

没有举措,查询Oracle材料后才分明,networklistener只起一其中介感化,当客户毗连它时,它依据设置寻觅到响应的数据库实例历程,然后spawned一个新的数据库毗连,这个毗连端口由networklistener传送给客户机,今后客户机就不再和打交道了,即便listener中断了事情。这个新的毗连端口是不成预知的,因此会被防火墙制止。

WindowsSocket2标准有一个新的特征,就是SharedSocket,所谓共享套接字是指一个历程共享另外一个历程的套接字(详见MSDN相干参考)。假如让networklistener与数据库服务历程共享套接字,那末毗连端口就不会变更。

怎样设置SharedSocket?

在注册表:HKEY_LOCAL_MACHINEOFTWAREORACLEHOME0上新建一个字符串值:USE_SHARED_SOCKET=true。假如安装了多个目次,则每一个相似的目次都要设置:HKEY_LOCAL_MACHINEOFTWAREORACLEHOMEx(x目次编号)

设置后请求从头启动实例(只重启listener发明没无效果)

援用材料:
http://www.computer-book-authors.org/aud_450.htm

典范成绩:
http://www.lazydba.com/oracle/0__37815.html

whenaclientconnectstoalisteneritusesport1521attheclientmachine.thelistenerthenreturnstotheclientthruadifferentport.The1521portisclosedandthedbconnectionusesthenewportforcommunicatingwiththeclient.iwantthelistenertoreturntotheclientusingport1521,how?

metalinksaysusetheuse_shared_socketparameter,butitsstillnotworking.isettheparametertotrueinthesysenvandintheregistry.
....

Oracle原文:

USE_SHARED_SOCKET

YoucansettheUSE_SHARED_SOCKETparametertoTRUEtoenabletheuseofsharedsockets.IfthisparameterissettoTRUE,thenetworklistenerpassesthesocketdescriptorforclientconnectionstothedatabasethread.Asaresult,theclientdoesnotneedtoestablishanewconnectiontothedatabasethreadanddatabaseconnectiontimeimproves.Also,alldatabaseconnectionssharetheportnumberusedbythenetworklistener,whichcanbeusefulifyouaresettingupthird-partyproxyservers.

OnWindowsNT4.0ServicePack3orearlier,enablingthisoptionprecludesbringingthenetworklistenerupordowninacasewhereadatabaseconnectionspawnedbythenetworklistenerisactive.Therefore,youmay
needtoshutdownallofthedatabasesservicedbyanetworklistenerbeforeyoucanbringdownandrestartanetworklistener.ThisresultsfromthewaysharedsocketshavebeenimplementedinWINSOCK2.WINSOCK2doesnot
allowareliablethreadtoanetworklisteneronanyportonwhichotherconnectionsarealsoactive.ThisisnotanissueonWindowsNT4.0ServicePack4orlater.OraclerecommendsthatyouupgradetoWindowsNT4.0ServicePack4ifyouintendtosetthisparameter.

ThisparameteronlyworksindedicatedservermodeinaTCP/IPenvironment.Ifthisparameterisset,youcannotusethe8.1.5listenertospawnOracle7.xdatabases.TospawnanOracle8.0.xdatabasefroman8.1.5listener

==============



首先我们要知道,或许有一项技术存在很多理由让我们可以选择使用MySQL学习教程,但是让我们不使用它往往只要有一个理由就足够了。

乐观 发表于 2015-1-19 09:35:15

groupby子句可以将查询结果分组,并返回行的汇总信息Oracle按照groupby子句中指定的表达式的值分组查询结果。

仓酷云 发表于 2015-1-24 12:04:46

如果处理少量数据,比如几百条记录的数据,我不知道这两种情况哪个效率更高,如果处理大量数据呢?比如有表中有20万条记录.

因胸联盟 发表于 2015-2-7 02:32:25

我们学到了什么?思考问题的时候从表的角度来思考问

再见西城 发表于 2015-2-19 21:14:11

至于淘汰的问题,只能说在你的项目周期之内,微软应该都不会倒闭。

灵魂腐蚀 发表于 2015-3-6 15:29:20

理解了存储结构,再阅读下性能优化的章节基本上会对sqlserver有个清晰地认识

只想知道 发表于 2015-3-13 03:10:52

having子句的作用是筛选满足条件的组,即在分组之后过滤数据,条件中经常包含聚组函数,使用having条件显示特定的组,也可以使用多个分组标准进行分组。

愤怒的大鸟 发表于 2015-3-20 11:23:57

同样会为索引视图等应用带来麻烦。看看行级和事务级的快照数据放在tempdb中,就能感觉到目前架构的尴尬。
页: [1]
查看完整版本: MYSQL网页设计Oracle客户穿越防火墙困难