This file contains 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
#include <codesloop/common/test_timer.h> | |
#include <codesloop/common/logger.hh> | |
#include <codesloop/common/common.h> | |
#include <keyspace_client.h> | |
#include <assert.h> | |
#include <vector> | |
This file contains 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/ruby | |
# | |
# Foldi Tamas <[email protected]>, BSDL | |
require "yaml" | |
# read configuration | |
@yxlan_dir = File.dirname($0) + "/../" | |
@conf = YAML::load_file( @yxlan_dir + 'etc/yxlon.conf' ) | |
@filename = @yxlan_dir + "log/yxlon_cron.log" |
This file contains 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
CREATE OR REPLACE PACKAGE BODY ISZMETL.etl_employee IS | |
PROCEDURE main( p_params param_list DEFAULT NULL ) IS | |
v_params obj_param := iszmk.obj_param( p_plist => p_params ); | |
v_logger obj_logger; | |
v_stmt VARCHAR2( 100 ); | |
BEGIN | |
/*** AUTOMATICALLY GENERATED PROCEDURE ***/ | |
/*** DO NOT CHANGE IT ***/ | |
v_start_date := sysdate; |
This file contains 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
%YAML 1.1 | |
--- | |
VERSION: 1.0.0.1 | |
DEFINE: | |
- INPUT: | |
NAME: book | |
FILE: | |
# change seghostname and file_path to reflect your | |
# runtime file location |
This file contains 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
wordcount: | |
cc -g -ggdb -shared -o wordcount.so wordcount.c -I`pg_config --includedir-server` -I`pg_config --pkgincludedir`/internal -I`pg_config --pkgincludedir` -fPIC |
This file contains 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
ALTER SESSION SET plsql_compiler_flags = 'NATIVE'; | |
-- | |
ALTER TYPE geomean_impl COMPILE; | |
-- | |
CREATE FUNCTION geomean( input NUMBER ) | |
RETURN NUMBER | |
PARALLEL_ENABLE | |
AGGREGATE USING geomean_impl; |
This file contains 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
REPORT ZAL_ABAP message-id 26 line-size 255 | |
no standard page heading. | |
* Y_XI_G00D_KONV_FASTFULL_2. | |
PARAMETER $PARAM1 TYPE I. | |
PARAMETER DOWNLOAD(1) DEFAULT 'N' lower case. "N-svr,Y-clnt | |
PARAMETER EXECMODE(1) DEFAULT 'B' lower case. "D-dlg,B-btch | |
PARAMETER OUT_DIR(48) DEFAULT "output file dir | |
'/dwacta/out/LD2' lower case. | |
PARAMETER IN_DIR(48) DEFAULT "input file dir | |
'/dwacta/out/LD2' lower case. |
This file contains 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
CREATE TABLE emp ( | |
name text, | |
age integer, | |
salary numeric(10,2) | |
); | |
CREATE OR REPLACE FUNCTION get_emps(float8) RETURNS SETOF emp AS ' | |
names <- c("Joe","Jim","Jon") | |
ages <- c(41,25,35) | |
salaries <- c(250000,120000,50000) |
This file contains 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
require 'httpclient' | |
module TableauLDAPSync | |
class Tableau | |
def initialize(server_url) | |
proxy = ENV['HTTP_PROXY'] | |
@http_client = HTTPClient.new(proxy) | |
@http_client.set_cookie_store("cookie.dat") |
This file contains 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
# put this file to the apache\conf directory | |
# Load mod_jk module | |
# Update this path to match your modules location | |
LoadModule jk_module modules/mod_jk.so | |
# Declare the module for <IfModule directive> (remove this line on Apache 2.x) | |
#AddModule mod_jk.c | |
# Where to find workers.properties | |
# Update this path to match your conf directory location (put workers.properties next to httpd.conf) |
OlderNewer