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
| #!/usr/bin/env bash | |
| set -e | |
| BASE_IMAGE="registry" | |
| REGISTRY="registry.hub.docker.com" | |
| IMAGE="$REGISTRY/$BASE_IMAGE" | |
| CID=$(docker ps | grep $IMAGE | awk '{print $1}') | |
| docker pull $IMAGE | |
| for im in $CID | |
| do |
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 'public class ' | |
| || TABLE_NAME | |
| || ' {' | |
| || chr(13) | |
| || chr(10) | |
| || LISTAGG(chr(9) | |
| || 'public ' | |
| || DATA_TYPE | |
| || ' ' | |
| || COLUMN_NAME |
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
| <%@ Page Language="C#" %> | |
| <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> | |
| <script runat="server"> | |
| protected void Page_Load(object sender, EventArgs e) | |
| { | |
| lblMessage.Text = ""; | |
| } |
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
| Add-type -AssemblyName System.Data.OracleClient | |
| function Get-OracleResult | |
| { | |
| param ( | |
| [Parameter(Mandatory=$true)] |