<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/">
<channel>
<title>Snipplr</title>
<link>http://snipplr.com/language/sql/tags/database</link>
<description>Recent snippets posted on Snipplr.com</description>
<language>en-us</language>
<pubDate>Sat, 25 May 2013 04:24:50 GMT</pubDate>
<item>
<title>(SQL) Oracle Database Version - geekzspot</title>
<link>http://snipplr.com/view/67875/oracle-database-version/</link>
<description><![CDATA[ <p>If you do not have access to the v$ Tables then you can use SQL Developer:
SQL Developer > View > Reports > Data Dictionary Reports > About Your Database > Version Banner</p> ]]></description>
<pubDate>Tue, 23 Oct 2012 07:14:34 GMT</pubDate>
<guid>http://snipplr.com/view/67875/oracle-database-version/</guid>
</item>
<item>
<title>(SQL) Schema for the database DVD - georgemathewkunnathoor</title>
<link>http://snipplr.com/view/58028/schema-for-the-database-dvd/</link>
<description><![CDATA[ <p></p> ]]></description>
<pubDate>Fri, 19 Aug 2011 16:06:56 GMT</pubDate>
<guid>http://snipplr.com/view/58028/schema-for-the-database-dvd/</guid>
</item>
<item>
<title>(SQL) Replace local db with new URL - xcsteve99</title>
<link>http://snipplr.com/view/57310/replace-local-db-with-new-url/</link>
<description><![CDATA[ <p>run these in the SQL tab</p> ]]></description>
<pubDate>Fri, 29 Jul 2011 08:10:23 GMT</pubDate>
<guid>http://snipplr.com/view/57310/replace-local-db-with-new-url/</guid>
</item>
<item>
<title>(SQL) Get ID of last inserted record in Access - wizard04</title>
<link>http://snipplr.com/view/54991/get-id-of-last-inserted-record-in-access/</link>
<description><![CDATA[ <p>Get the value of the autonumber field for the last record inserted into an Access database via the current connection.</p> ]]></description>
<pubDate>Wed, 08 Jun 2011 06:46:45 GMT</pubDate>
<guid>http://snipplr.com/view/54991/get-id-of-last-inserted-record-in-access/</guid>
</item>
<item>
<title>(SQL) Search for a text in all databases - SQLServerCentral - ezerick</title>
<link>http://snipplr.com/view/49964/search-for-a-text-in-all-databases--sqlservercentral/</link>
<description><![CDATA[ <p></p> ]]></description>
<pubDate>Thu, 03 Mar 2011 08:07:05 GMT</pubDate>
<guid>http://snipplr.com/view/49964/search-for-a-text-in-all-databases--sqlservercentral/</guid>
</item>
<item>
<title>(SQL) Find Duplicate Rows in Table - ezerick</title>
<link>http://snipplr.com/view/47690/find-duplicate-rows-in-table/</link>
<description><![CDATA[ <p>Field1 + Field2 + Field3 should create 1 entry for each unique row in the DB. In an employee table, this would be FirstName + LastName + EmployeeNumber</p> ]]></description>
<pubDate>Sat, 22 Jan 2011 04:47:21 GMT</pubDate>
<guid>http://snipplr.com/view/47690/find-duplicate-rows-in-table/</guid>
</item>
<item>
<title>(SQL) boolean column for oracle database tables - geekzspot</title>
<link>http://snipplr.com/view/45383/boolean-column-for-oracle-database-tables/</link>
<description><![CDATA[ <p>Boolean values (usually represented as Checkboxes in a User Interface)

This is efficient because is does not suffer the clumsy and inefficient case problems of WHERE UPPER(column) = UPPER(variable);</p> ]]></description>
<pubDate>Tue, 07 Dec 2010 15:53:32 GMT</pubDate>
<guid>http://snipplr.com/view/45383/boolean-column-for-oracle-database-tables/</guid>
</item>
<item>
<title>(SQL) Solucion al error cuando creamos diagramas de base de datos despues de mudar una BD - derebus</title>
<link>http://snipplr.com/view/41580/solucion-al-error-cuando-creamos-diagramas-de-base-de-datos-despues-de-mudar-una-bd/</link>
<description><![CDATA[ <p>Solucion a error cuando mudamos una bd de una pc a otra y luego no podemos crear un diagrama de la BD</p> ]]></description>
<pubDate>Wed, 06 Oct 2010 01:36:41 GMT</pubDate>
<guid>http://snipplr.com/view/41580/solucion-al-error-cuando-creamos-diagramas-de-base-de-datos-despues-de-mudar-una-bd/</guid>
</item>
<item>
<title>(SQL) Find and Replace in SQLite - traeregan</title>
<link>http://snipplr.com/view/41038/find-and-replace-in-sqlite/</link>
<description><![CDATA[ <p></p> ]]></description>
<pubDate>Sun, 26 Sep 2010 01:58:24 GMT</pubDate>
<guid>http://snipplr.com/view/41038/find-and-replace-in-sqlite/</guid>
</item>
<item>
<title>(SQL) Select Records Beginning With Certain Letter - traeregan</title>
<link>http://snipplr.com/view/41008/select-records-beginning-with-certain-letter/</link>
<description><![CDATA[ <p></p> ]]></description>
<pubDate>Sat, 25 Sep 2010 00:13:20 GMT</pubDate>
<guid>http://snipplr.com/view/41008/select-records-beginning-with-certain-letter/</guid>
</item>
<item>
<title>(SQL) Find Column Name in all tables in a Database - hairajeshk</title>
<link>http://snipplr.com/view/40507/find-column-name-in-all-tables-in-a-database/</link>
<description><![CDATA[ <p>Find column name in all tables of a database</p> ]]></description>
<pubDate>Wed, 15 Sep 2010 15:42:26 GMT</pubDate>
<guid>http://snipplr.com/view/40507/find-column-name-in-all-tables-in-a-database/</guid>
</item>
<item>
<title>(SQL) Clean Injection from Database Tables - emregulcan</title>
<link>http://snipplr.com/view/35753/clean-injection-from-database-tables/</link>
<description><![CDATA[ <p>You can use this SP like that;
Exec CleanInjection 'INFECTED WORD','CLEAN WORD'
(in use : Exec CleanInjection '','')</p> ]]></description>
<pubDate>Tue, 15 Jun 2010 08:21:53 GMT</pubDate>
<guid>http://snipplr.com/view/35753/clean-injection-from-database-tables/</guid>
</item>
<item>
<title>(SQL) Create UTF8 Database - manuelstofer</title>
<link>http://snipplr.com/view/29539/create-utf8-database/</link>
<description><![CDATA[ <p>Create a new utf8 database in MySQL</p> ]]></description>
<pubDate>Wed, 10 Mar 2010 06:29:55 GMT</pubDate>
<guid>http://snipplr.com/view/29539/create-utf8-database/</guid>
</item>
<item>
<title>(SQL) move Drupal tags from one vocabulary into another - berkes</title>
<link>http://snipplr.com/view/26126/move-drupal-tags-from-one-vocabulary-into-another/</link>
<description><![CDATA[ <p>I had several vocabularies but wanted to merge them into one. 
A simple query does this for you.

The vocabulary_id where I wanted to merge all the tags into is 3
The vocabulary_id where the tags are to be merged from is 7, 8 and 12</p> ]]></description>
<pubDate>Fri, 08 Jan 2010 04:41:13 GMT</pubDate>
<guid>http://snipplr.com/view/26126/move-drupal-tags-from-one-vocabulary-into-another/</guid>
</item>
<item>
<title>(SQL) Select to read content of a CLOB column with Oracle DB - andreiabohner</title>
<link>http://snipplr.com/view/25516/select-to-read-content-of-a-clob-column-with-oracle-db/</link>
<description><![CDATA[ <p></p> ]]></description>
<pubDate>Sun, 27 Dec 2009 14:11:17 GMT</pubDate>
<guid>http://snipplr.com/view/25516/select-to-read-content-of-a-clob-column-with-oracle-db/</guid>
</item>
<item>
<title>(SQL) Importing a MySQL database in Windows - Mithun</title>
<link>http://snipplr.com/view/22136/importing-a-mysql-database-in-windows/</link>
<description><![CDATA[ <p></p> ]]></description>
<pubDate>Fri, 30 Oct 2009 00:57:49 GMT</pubDate>
<guid>http://snipplr.com/view/22136/importing-a-mysql-database-in-windows/</guid>
</item>
<item>
<title>(SQL) Find all databases and login credentials - tobewan</title>
<link>http://snipplr.com/view/22120/find-all-databases-and-login-credentials/</link>
<description><![CDATA[ <p>If you need to list all of the MySQL databases managed by Plesk along with their corresponding domains and login credentials, you can use this query:</p> ]]></description>
<pubDate>Thu, 29 Oct 2009 17:45:37 GMT</pubDate>
<guid>http://snipplr.com/view/22120/find-all-databases-and-login-credentials/</guid>
</item>
<item>
<title>(SQL) TSQL Convert DateTime - rengber</title>
<link>http://snipplr.com/view/19237/tsql-convert-datetime/</link>
<description><![CDATA[ <p>I am forever forgetting this.  Have to look up the 101 vs 103 in books online every time.   
Also forget which way around is US/NZ format.  :-)</p> ]]></description>
<pubDate>Thu, 03 Sep 2009 21:48:26 GMT</pubDate>
<guid>http://snipplr.com/view/19237/tsql-convert-datetime/</guid>
</item>
<item>
<title>(SQL) TSQL to Get the SQL Autonumber ID of the Row Just Inserted - rengber</title>
<link>http://snipplr.com/view/19084/tsql-to-get-the-sql-autonumber-id-of-the-row-just-inserted/</link>
<description><![CDATA[ <p>Dead simple, but often forgotten.</p> ]]></description>
<pubDate>Mon, 31 Aug 2009 22:48:15 GMT</pubDate>
<guid>http://snipplr.com/view/19084/tsql-to-get-the-sql-autonumber-id-of-the-row-just-inserted/</guid>
</item>
<item>
<title>(SQL) SQL Server String Split Function - rengber</title>
<link>http://snipplr.com/view/17651/sql-server-string-split-function/</link>
<description><![CDATA[ <p>From StackOverflow.  I'm still not quite happy with my understanding of it, but it looks an order of magnitude more elegant than most I've found.</p> ]]></description>
<pubDate>Wed, 29 Jul 2009 23:37:26 GMT</pubDate>
<guid>http://snipplr.com/view/17651/sql-server-string-split-function/</guid>
</item>
</channel>
</rss>