Skip to content

Commit 16a9671

Browse files
Merge pull request #9 from yogiboy/master
Update MSSQL / Oracle INSTRUCTIONS.md
2 parents b767bd4 + 589c426 commit 16a9671

File tree

3 files changed

+3
-4
lines changed

3 files changed

+3
-4
lines changed

mssql-admin/INSTRUCTIONS.md

+1-2
Original file line numberDiff line numberDiff line change
@@ -684,8 +684,7 @@ Hook operations allow users to execute custom operations at select points during
684684
$Server = New-Object ('Microsoft.SqlServer.Management.Smo.Server') $sqlserver
685685
if (-Not $Server.Logins.Contains($name))
686686
{
687-
$Login = New-Object -TypeName Microsoft.SqlServer.Management.Smo.Login -ArgumentList $Server,
688-
$name
687+
$Login = New-Object -TypeName Microsoft.SqlServer.Management.Smo.Login -ArgumentList $Server, $name
689688
$Login.LoginType = 'SqlLogin'
690689
$Login.Create('delphix')
691690
}

oracle-admin/INSTRUCTIONS.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -823,12 +823,12 @@ Once the VDB is created, you can verify that the VDB is operational by:
823823
- Type export ORACLE\_HOME=/u01/app/oracle/product/11.2.0/dbhome\_1
824824
- Type export PATH=$ORACLE\_HOME/bin:$PATH
825825
- Type sqlplus / as sysdba
826-
- Type show parameter memory\_target
826+
- Type show parameter sga\_max\_size
827827
- Type connect appuser/appuser
828828

829829
This will verify that the VDB is online with the **VDB Configuration Template** we specified, and that the **APPUSER** user was created by our hook.
830830

831-
![](images/new/image46.png)
831+
![](images/new/image64.png)
832832

833833
Note: It may take a couple minutes for the VDB creation to complete. You can monitor the progress on the left-hand side of the screen next to the **qadb** object in the **DB Targets** group. On the **Actions** pane on the right-hand side of the screen, you should see the **Provision virtual database "qadb"** item move to the **Recently completed** pane without error. Once the VDB is created, you can verify that the VDB is operational by:
834834

oracle-admin/images/new/image64.png

110 KB
Loading

0 commit comments

Comments
 (0)