Posts

SQL

I have put in my best efforts to ensure the task's completion meets the expected standards and aligns with the desired outcomes. I have also attached any relevant documents, reports, or deliverables associated with the task for your convenience. Should you require any further information or clarification regarding the completed task, please do not hesitate to reach out to me. I am available to discuss any aspects in more detail or provide additional support as needed. Thank you for entrusting me with this task. I look forward to your feedback and guidance on the next steps or any revisions required. SELECT (SELECT COUNT(*) FROM USER_TABLES) AS table_count, (SELECT COUNT(*) FROM USER_VIEWS) AS view_count, (SELECT COUNT(*) FROM USER_INDEXES) AS index_count FROM DUAL; SELECT      (SELECT COUNT(*) FROM USER_TABLES) AS table_count,     (SELECT COUNT(*) FROM USER_VIEWS) AS view_count,     (SELECT COUNT(*) FROM USER_INDEXES) AS index_count,     (SELECT COUNT(*) FROM USER_TABL

Code a simple html page with filter applied on table

  <!DOCTYPE html> <html> <head>     <title>Table Filter Example</title>     <style>         table {             border-collapse: collapse;             width: 100%;         }         th, td {             border: 1px solid black;             padding: 8px;             text-align: left;         }     </style> </head> <body>     <input type="text" id="filterInput" placeholder="Filter">     <br><br>     <table id="myTable">         <tr>             <th>Name</th>             <th>Age</th>             <th>City</th>         </tr>         <tr>             <td>John Doe</td>             <td>25</td>             <td>New York</td>         </tr>         <tr>             <td>Jane Smith</td>             <td>30</td>             <td>London</td>         &l

VDB template for Delphix

 --- version: 1 type: OracleVDB timeflowPointParameters:   type: OracleTimeflowPointSemantic   container: <SOURCE_CONTAINER_NAME> parameters:   dSource:     type: OracleDataNode     container: <SOURCE_CONTAINER_NAME>     config:       type: OracleSIConfig       logsyncEnabled: true       stageEnabled: false       recoveryModel: ARCHIVELOG       controlFileAutoBackup: false       openResetLogs: false       backupRedundancy: 1       rmanChannels: 4       rmanParallelism: 4       onlineRedoLogGroups: 8       onlineRedoLogSize: 100M       memoryTarget: 6G       sgaTarget: 2G       pgaAggregationTarget: 2G       sharedPoolSize: 512M       largePoolSize: 256M       javaPoolSize: 256M       streamsPoolSize: 0M       dbWriterProcesses: 4       logBuffer: 10M       dbFiles: 128       dbFileMultiblockReadCount: 16       maxSharedServers: 8       parallelMaxServers: 4       undoManagement: AUTO       undoTablespace: UNDOTBS1       undoRetention: 14400       sessions: 200       process

Best setting for OBS Studio to record Youtube Vedios

 To optimize OBS Studio for recording videos for YouTube, you can follow these general settings: 1. Open OBS Studio and go to "Settings" in the lower-right corner. 2. In the "Settings" window, select the "Output" tab. 3. Under "Output Mode," select "Advanced." 4. In the "Recording" section, choose the following settings:    - Set "Recording Format" to MP4.    - Set "Type" to Standard.    - Set "Encoder" to either x264 or NVENC (if you have a compatible NVIDIA GPU).    - Set "Recording Quality" to your desired level. A balance between quality and file size is usually recommended (e.g., CQP at 20-23). 5. In the "Audio" section, choose your preferred audio settings:    - Select the appropriate audio device for your microphone in the "Recording Device" dropdown.    - Set the desired audio bitrate, typically 128-192 kbps. 6. Go to the "Video" tab.    - Set the &q

How to monitor Azure resources

# Connect to Azure Connect-AzAccount # Function to get disk details function Get-DiskDetails {     param (         [Parameter(Mandatory=$true)]         [string]$ManagedDiskId     )          $diskName = (Get-AzResource -ResourceId $ManagedDiskId).Name     $resourceGroup = (Get-AzResource -ResourceId $ManagedDiskId).ResourceGroupName          $disk = Get-AzDisk -ResourceGroupName $resourceGroup -DiskName $diskName     return $disk } # Output file path $outputFilePath = "C:\Path\to\output.html" # Start HTML file content $htmlContent = @" <!DOCTYPE html> <html> <head> <style> table {     font-family: Arial, sans-serif;     border-collapse: collapse;     width: 100%; } td, th {     border: 1px solid #dddddd;     text-align: left;     padding: 8px; } th {     background-color: #dddddd; } </style> </head> <body> "@ # Get all VMs $vms = Get-AzVM # Add table headers to HTML content $htmlContent += "<table>" $htmlConte

Gitlab: .gitlab-ci.yml to get triggered manually and after checking variable name only

Pipeline to be triggered only when: 1. STAGE variable input equals PIPELINE and 2. Pipeline in manually triggered Below is the code for .gitlab-ci.yml variables: STAGE: value: '' description: 'Enter PIPELINE here!' job build: stage: build script: - chmod +x $CI_PROJECT_DIR/scripts/hello.sh - $CI_PROJECT_DIR/scripts/hello.sh rules: - if: '$CI_PIPELINE_SOURCE == "web"' when: manual - if: '$STAGE == "PIPELINE"'

Azure AZ-900 Practice Questions

Image
  C. Private Cloud NO. AZ Availability Zone will help in failover Models are CapEx and OpEx. Here answer is Operational. Answer A & C  Answer B VM is Compute solution, not storage. Answer is C Answer A Answer C Answer A & C Answer A Answer D Only beyond certain limit will cost.  Different region's cost may vary.  To reduce the cost they need to stop using public IP address as they are billed per hour And the user group has a max free cap of 5 00000. So won't help in cost reduction. Practise Test: https://www.testpreptraining.com/microsoft-azure-fundamentals-az-900-free-practice-test https://free-braindumps.com/microsoft/free-az-900-braindumps.html?p=2 https://www.academia.edu/40185889/AZ_900_Q_and_As_Microsoft_Azure_Fundamentals_Pass_Microsoft_AZ_900_Exam_with_100_Guarantee Microsoft AZ-900 Sample Questions: 01. Which Azure service should you use to store certificates? a)  Azure Security Center b)  an Azure Storage account c)  Azure Key Vault d)  Azure Information Prote