A Pen by Catalin Rosu on CodePen.
This file has been truncated, but you can view the full file.
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
<!DOCTYPE html> | |
<html lang="en-us"> | |
<head> | |
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"> | |
<meta name="viewport" content="width=device-width, initial-scale=1"> | |
<meta http-equiv="X-UA-Compatible" content="IE=edge"> | |
<title>Table of Contents | |
</title> | |
<meta property="og:site_name" content="Oracle Help Center"> |
This file has been truncated, but you can view the full file.
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
"<!DOCTYPE html>\n<html lang=\"en-us\">\n <head>\n <meta http-equiv=\"Content-Type\" content=\"text/html; charset=utf-8\">\n <meta name=\"viewport\" content=\"width=device-width, initial-scale=1\">\n <meta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\">\n <title>Table of Contents\n \n </title>\n <meta property=\"og:site_name\" content=\"Oracle Help Center\">\n <meta property=\"og:title\" content=\"PL/SQL Packages and Types Reference\">\n <meta property=\"og:description\" content>\n <link rel=\"stylesheet\" href=\"/sp_common/book-template/ohc-book-template/css/book.css\">\n <link rel=\"shortcut icon\" href=\"/sp_common/book-template/ohc-common/img/favicon.ico\">\n <meta name=\"application-name\" content=\"PL/SQL Packages and Types Reference\">\n <meta name=\"generator\" content=\"DITA Open Toolkit version 1.8.5 (Mode = doc)\">\n <meta name=\"plugin\" content=\"SP_docbuilder HTML plugin release 18.2.2\">\n <link rel=\"alternate\ |
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
<body><pre style=display:block;overflow-x:auto;padding:0.5em;background:white;color:black;border:0px;cursor:pointer><code class=language-sql style=white-space:pre><span style=color:rgb(0,0,255)>With</span><span> child_parent_article </span><span style=color:rgb(0,0,255)>as</span><span> | |
</span><span>(</span><span style=color:rgb(0,0,255)>select</span><span> </span><span style=color:rgb(0,0,255)>distinct</span><span> | |
</span> ao_child.object_type_id, | |
ao_child.object_uuid child_uuid, | |
opr.parent_object_uuid parent_uuid | |
<span> </span><span style=color:rgb(0,0,255)>from</span><span> public.alation_object ao_child | |
</span><span> </span><span style=color:rgb(0,0,255)>left</span><span> </span><span style=color:rgb(0,0,255)>outer</span><span> </span><span style=color:rgb(0,0,255)>join</span><span> public.object_parent_relationship opr | |
</span><span> </span><span style=color:rgb(0,0,255)>on</span><span> ao_child.object_uuid </span><span class=hljs-operator>=</span><span> opr.object_uuid |
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
<html> | |
<!--?xml version="1.0" encoding="utf-8"?--> | |
<!--?xml-stylesheet type="text/xsl" href="wsdl-viewer.xsl"?--> | |
<head></head> | |
<body> | |
<wsdl:definitions targetnamespace="http://www.axis.com/vapix/ws/action1" xmlns:wsdl="http://schemas.xmlsoap.org/wsdl/" xmlns:aa="http://www.axis.com/vapix/ws/action1" xmlns:wsnt="http://docs.oasis-open.org/wsn/b-2" xmlns:soap="http://schemas.xmlsoap.org/wsdl/soap12/"> | |
<wsdl:documentation xmlns="http://www.w3.org/1999/xhtml"> |
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
var isMac = navigator.appVersion.indexOf( "Mac" ) != -1; | |
var HP = navigator.userAgent.indexOf( "HP" ) != -1; | |
var Sun = navigator.userAgent.indexOf( "Sun" ) != -1; | |
var IE = document.all; | |
var IE4 = navigator.appVersion.indexOf( "MSIE 4." ) != -1; | |
var IE5 = navigator.appVersion.indexOf( "MSIE 5." ) != -1; | |
var IE50 = navigator.appVersion.indexOf( "MSIE 5.0" ) != -1; | |
var IE6 = ((document.all)&&(navigator.appVersion.indexOf("MSIE 6.")!=-1)) ? true : false; | |
var IE7 = ((document.all)&&(navigator.appVersion.indexOf("MSIE 7.")!=-1)) ? true : false; |
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
<!-- srch_results_local.twig --> | |
<strong style="display:block;"> | |
<!-- srch_pager.twig --> | |
<div class="pull-right" style="padding-left:50px;"> | |
<ul class="pagination pagination-sm" role="listbox" aria-label="Search Pagination"> | |
<li class="disabled" role="option"> | |
<a href="#"><<</a> | |
</li> | |
<li class="disabled" role="option"> |
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
public class JsonSchemaController : ApiController | |
{ | |
[HttpPost] | |
[Route("api/jsonschema/validate")] | |
public ValidateResponse Valiate(ValidateRequest request) | |
{ | |
// load schema | |
JSchema schema = JSchema.Parse(request.Schema); | |
JToken json = JToken.Parse(request.Json); |
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
# coding=utf-8 | |
########################################################################################## | |
# Name: Write Queries to CSV File | |
# Description: | |
# This script writes all the queries for a data source to a CSV file. | |
# | |
# The code uses the Alation REST APIs. | |
# | |
# Author: Alation | |
# Alation Catalog Version: 2022.3 |