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
| CREATE OR REPLACE PROCEDURE LOOK_FOR_OBJECT ( | |
| IN SCHEM VARCHAR(256), | |
| IN NAME VARCHAR(256) | |
| ) | |
| LANGUAGE SQL | |
| SPECIFIC PRO_LOOK_FOR_OBJECT | |
| DYNAMIC RESULT SETS 1 | |
| READS SQL DATA | |
| DETERMINISTIC | |
| NO EXTERNAL ACTION |
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
| #!/bin/bash | |
| # Changes the environment to the given DB2 instance. | |
| # | |
| # You need to 'source' this command in order to change the environement. | |
| # To ease the process, you can create a function per instance in the .profile. | |
| # | |
| # function i01 { . ${CHINS} db2inst1 ; } | |
| # | |
| # To configure, you just need to change the DB2 path. |
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
| #!/bin/bash | |
| # The MIT License (MIT) | |
| # | |
| # Copyright (c) 2014 Andres Gomez Casanova | |
| # | |
| # Permission is hereby granted, free of charge, to any person obtaining a copy | |
| # of this software and associated documentation files (the "Software"), to deal | |
| # in the Software without restriction, including without limitation the rights | |
| # to use, copy, modify, merge, publish, distribute, sublicense, and/or sell | |
| # copies of the Software, and to permit persons to whom the Software is |
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/ksh | |
| # Changes the environment to the given instance. | |
| # You need to 'source' this command in order to change the environement. | |
| # To ease the process, you can create an alias per instance in the .profile. | |
| # alias i1=". ~/chins db2inst1" | |
| #set -x |
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
| import java.util.Iterator; | |
| import twitter4j.Query; | |
| import twitter4j.QueryResult; | |
| import twitter4j.Tweet; | |
| import twitter4j.Twitter; | |
| import twitter4j.TwitterFactory; | |
| import COM.ibm.db2.app.UDF; | |
| /** |
NewerOlder