Withdata Software

Producing high-quality database tools

Main menu

Skip to primary content
Skip to secondary content
  • Home
  • Product
  • Purchase
  • Download
  • Contact Us
  • About
  • Privacy Policy

Category Archives: Tips

Post navigation

← Older posts

Run a task every x-minutes with Windows Task Scheduler

Posted on August 17, 2017 by Shiji Pan

The task must be configured in two steps. First you create a simple task that start at 0:00, every day. Then, you go in Advanced... (or similar depending on the operating system you are on) and select the Repeat every X minutes option for 24 hours. Double click the task and a property ... Read more

Posted in Tips | Tagged Task Scheduler

How to select N random records from a SQLite table

Posted on April 18, 2017 by Shiji Pan

If you want to select N random records from a SQLite table, you need to change the clause as follows: select * from tableName order by RANDOM() limit N For example, to select 5 random customers in the customers table, you use the following query: select * from customers order by RANDOM() limit ... Read more

Posted in Tips | Tagged random records, Sqlite

How to select N random records from a DB2 table

Posted on April 18, 2017 by Shiji Pan

If you want to select N random records from a DB2 table, you need to change the clause as follows: select * from tableName order by rand() fetch first N rows only For example, to select 5 random customers in the customers table, you use the following query: select * from customers order by rand() ... Read more

Posted in Tips | Tagged DB2, random records

How to select N random records from a PostgreSQL table

Posted on April 18, 2017 by Shiji Pan

If you want to select N random records from a PostgreSQL table, you need to change the clause as follows: select * from tableName order by random() limit N For example, to select 5 random customers in the customers table, you use the following query: select * from customers order by random() ... Read more

Posted in Tips | Tagged PostgreSQL, random records

How to select N random records from a SQL Server table

Posted on April 18, 2017 by Shiji Pan

If you want to select N random records from a SQL Server table, you need to change the clause as follows: select top N * from tableName order by newid() For example, to select 5 random customers in the customers table, you use the following query: select top 5 * from customers order by ... Read more

Posted in Tips | Tagged random records, Sql Server

How to select N random records from a MySQL table

Posted on April 18, 2017 by Shiji Pan

If you want to select N random records from a MySQL table, you need to change the clause as follows: select * from tableName order by rand() limit N For example, to select 5 random customers in the customers table, you use the following query: select * from customers order by rand() limit 5 Some ... Read more

Posted in Tips | Tagged Mysql, random records

How to select N random records from an Oracle table

Posted on April 18, 2017 by Shiji Pan

If you want to select N random records from an Oracle table, you need to change the clause as follows: select * from ( select*  from tableName  order by dbms_random.value ) where rownum <= N; For example, to select 5 random customers in the customers table, you use the following ... Read more

Posted in Tips | Tagged Oracle, random records

About “Unable to load odbcji32.dll”

Posted on April 3, 2016 by Shiji Pan

Sometimes, you may get this error: To solve this problem, you can see this page: http://answers.microsoft.com/en-us/office/forum/office_2016-access/unable-to-load-odbcji32dll/de67abd0-f4d8-40af-8e5f-1922b8393d7e . ... Read more

Posted in Tips

missing msvcr110.dll

Posted on July 15, 2015 by Shiji Pan

The Program can’t start because MSVCR110.dll is missing from your computer. Try reinstalling the program to fix this problem. See this ... Read more

Posted in Tips

Download Microsoft Access Database Engine (64-bit)

Posted on November 18, 2014 by Shiji Pan

If you use 64-bit application, and meet error message “Provider cannot be found. It may not be properly installed”, or “Data source name not found and no default driver specified”, Please download and install Microsoft Access Database Engine 2016 Redistributable 64 bit ... Read more

Posted in Tips | Tagged Microsoft Access Database Engine

Post navigation

← Older posts

Recent Posts

  • Split large TXT file in Windows
  • Batch Split Big Text Files
  • Batch convert Leica DNG images to JPG in one go
  • Batch convert Olympus ORF images to JPG in one go
  • Batch convert Nikon NEF images to JPG in one go
Withdata Software. ©2004 - 2025 All rights reserved.