Database

There are 3 entries for the tag Database

Chinese Simplified is available for DBAdmin

Thanks to George J. Sun (web), Chinese Simplified language pack is available for Database Administrator. The ZIP file containing all languages is updated with the new file. I have to admit - I couldn't test it, as my system don't even display Chinese, so if anyone sees any problem in with the language file (not displayed properly and such), contact me or George to get it fixed :) As a reminder - DBAdmin is a tool for online managing your MS Access databases, written by me some time ago and using plain ASP (not .NET). Technorati Tags: DBAdmin,...

DBAdmin moved

I have decided to move DBAdmin to a new location, since I have replaced my old site with this blog. The new Database Administrator for MS Access page can be accessed from Articles links (see on the right below). The direct link is: DBAdmin for MS Access Technorati Tags: MS Access, Database

How to drop a database with active connections

Sometimes you need to drop a database from within code and without using SQLDMO. But DROP DATABASE will fail if there are any active connections exist. So below is a small script that kills all active connections on particular database and drops the database at the end. Remeber to replace <<DATABASE_NAME>> with your actual database name :)   1: SET 2: NOCOUNT ON 3: DECLARE ...