This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
SELECT /* + RULE */ | |
df.tablespace_name AS "Tablespace" | |
,df.bytes / (1024 * 1024 * 1024) AS "Size (GB)" | |
,Trunc(fs.bytes / (1024 * 1024 * 1024)) AS "Free (GB)" | |
FROM ( | |
SELECT tablespace_name | |
,Sum(bytes) AS bytes | |
FROM dba_free_space | |
GROUP BY tablespace_name | |
) fs |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
echo off | |
REM startup with number of seconds as an argument you want to wait between admin and managed servers | |
REM Usage: start_all seconds | |
IF [%1] EQU [] GOTO USAGE | |
set MW_HOME=C:\Oracle\Middleware\WLS1036x32 | |
set JDEV_HOME=C:\Oracle\Middleware\JDev111117 | |
set JAVA_HOME="C:\Program Files\Java\jdk1.7.0_80" | |
set DOMAIN_HOME=%MW_HOME%\user_projects\domains\soabpm_domain |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
C:\Users\prabhas>hostname | |
prabhas |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
setup.exe -jreLoc C:\Progra~1\Java\jdk1.7.0_80\jre |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
SQL> CONNECT user/password | |
SQL> show parameter session | |
SQL> show parameter processes | |
SQL> alter system reset sessions scope=spfile sid='*'; | |
SQL> alter system set processes=300 scope=spfile; | |
SQL> shutdown immediate | |
SQL> startup | |
SQL> show parameter session | |
SQL> show parameter processes |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<xsl:stylesheet version="1.0" | |
xmlns:xp20="http://www.oracle.com/XSL/Transform/java/oracle.tip.pc.services.functions.Xpath20" | |
xmlns:bpws="http://schemas.xmlsoap.org/ws/2003/03/business-process/" | |
xmlns:aia="http://www.oracle.com/XSL/Transform/java/oracle.apps.aia.core.xpath.AIAFunctions" | |
xmlns:mhdr="http://www.oracle.com/XSL/Transform/java/oracle.tip.mediator.service.common.functions.MediatorExtnFunction" | |
xmlns:bpel="http://docs.oasis-open.org/wsbpel/2.0/process/executable" | |
xmlns:oraext="http://www.oracle.com/XSL/Transform/java/oracle.tip.pc.services.functions.ExtFunc" | |
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | |
xmlns:dvm="http://www.oracle.com/XSL/Transform/java/oracle.tip.dvm.LookupValue" | |
xmlns:hwf="http://xmlns.oracle.com/bpel/workflow/xpath" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version="1.0" encoding="utf-8"?> | |
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform"> | |
<xsl:output method="xml" indent="yes"/> | |
<xsl:template match="*"> | |
<xsl:element name="{local-name(.)}"> | |
<xsl:apply-templates select="@* | node()"/> | |
</xsl:element> | |
</xsl:template> | |
<xsl:template match="@*"> |