USE {databasename}; GO
SELECT * FROM information_schema.tables;
<div id="howToDonatePage" class="container-fluid"> | |
<a id="donate" class="smooth"> </a> | |
<div class="jumbotron"> | |
<div class="row"> | |
<h3>Donations </h3> | |
<h2> WHY WAIT FOR A NOBLE CAUSE?</h2> | |
<div class="row"> |
package com.example.mac.testapp; | |
import android.app.Activity; | |
import android.os.Bundle; | |
import android.util.Log; | |
import android.view.View; | |
import android.widget.Button; | |
import android.widget.EditText; | |
import android.widget.TextView; |
SELECT id, instanceId, processModelId, GROUP_CONCAT(CONCAT_WS("=", variableName, oldValue)) AS OLDVALUE, | |
GROUP_CONCAT(CONCAT_WS("=", variableName, newValue)) AS NEWVALUE , parentVariableName FROM `Object_History` | |
GROUP BY instanceId, parentVariableName; |
load( | |
local!pagingInfo: a!pagingInfo( | |
startIndex:1, | |
batchSize:-1 | |
), | |
with( | |
local!data: { |
LISTAGG in Oracle | |
SELECT deptno, LISTAGG(ename, ',') WITHIN GROUP (ORDER BY ename) AS employees | |
FROM emp | |
GROUP BY deptno; | |
Using the WM_CONCAT function: | |
SELECT deptno, wm_concat(ename) AS employees |
1. https://www.websequencediagrams.com/ - Web Sequence Diagrams - for creating sequence diagrams using a simple DSL | |
2. http://yuml.me - for creating UML diagrams | |
By default, remote debugging is not enabled. You can enable it - default port is 8787.
In the file standalone.conf.bat
in the <JBOSS_HOME>/bin
folder, just uncommnet the following line:
rem Sample JPDA settings for remote socket debugging
set "JAVA_OPTS=%JAVA_OPTS% -agentlib:jdwp=transport=dt_socket,address=8787,server=y,suspend=n"
/* contains code samples and explanation of apache poi*/
for reading, creating, editing PPT files
OLE - Object linking and Embedding is a proprietary technology by Microsoft which allows embedding and linking to other doucments and objects
OLE allows embedding one document within another
/*An example of uploading a document to the KC */ | |
public void uploadDocumentToAppianKC( | |
ContentService contentService, | |
byte[] bytes, | |
String extFileName, | |
Long folderId, | |
String uniqueIdentifier) throws InvalidContentException, StorageLimitException, PrivilegeException, | |
InsufficientNameUniquenessException, DuplicateUuidException, IOException { |