Mysql Data Manager 1.72'
Grok Headline matches for Mysql Data Manager 1.72'
Mindset's MySQL Manager
Mindset's MySQL Manager
09/18/2004 06:59 PMMindset's MySQL Manager!
Remote MySQL Manager 1.16
Remote MySQL Manager 1.16
03/14/2003 11:14 PMPHP code to manage a MySql DB over the Web.
remote mysql manager
remote mysql manager
03/14/2003 07:27 PMrmm release 1.16
EMS MySQL Manager Professional for
Windows v2.8.0.1
EMS MySQL Manager Professional for
Windows v2.8.0.1
09/15/2004 07:07 PMEMS MySQL Manager provides powerful tools for MySQL Server
administration and object management. Its Graphical User Interface
allows you to create/edit all MySQL database objects in a simple and
direct way, design databases visually, run SQL scripts, manage users
and privileges, visually build SQL queries, extract, print, and search
metadata, create database structure reports in HTML format,
export/import data, view/edit BLOBs and many more. [Shareware $135.00
30 Days 5,89 MB]
Navicat 5.0 (MySQL Manager) Released!
Navicat 5.0 (MySQL Manager) Released!
01/16/2004 01:04 PMA powerful feature-
Visual Query Builder is added in
Navicat 5.0 (MySQL Manager) for Mac
OS X. The new version also includes a View Table Structure function,
bug fixes for file imports, and interface improvements.
MySQL and Terabytes of Data?
MySQL and Terabytes of Data?
12/06/2002 04:09 PMIt sounds like I'll be helping with some multi-terabyte MySQL tests in
the not too distant future. This is good not just because I get to
play with neat toys, but it'll finally help me to answer the "how
well...
Backing up your MySQL data
Backing up your MySQL data
12/27/2004 03:08 AMIf you have ever pulled your hair out in frustration over data loss,
no doubt the word 'backup' has special meaning in your life. Databases
offer a nice way to catalog data, but with the amount of data being
trusted into MySQL databases these days, the after-effects of an
unwise DROP DATABASE command, an unlucky system crash, or a failed
hand-edit of the table structure are catastrophic and can be
unrecoverable -- unless you have a backup to restore from.
Secure Data Manager
Secure Data Manager
11/10/2003 11:20 PMSDM (secure data/password manager) 1.1 released
NewsForge: Backing Up Your MySQL Data
NewsForge: Backing Up Your MySQL Data
12/28/2004 07:36 PM"If you have ever pulled your hair out in frustration over data loss,
no doubt the word 'backup' has special meaning in your life..."
Transferring Data to MySQL Using SQLyog
Transferring Data to MySQL Using SQLyog
03/11/2003 01:23 AMNeed any easy way to import data from your ODBC-compliant database
into MySQL? Look no further than SQLyog's ODBC Import tool. Read all
about it inside.
Adding & Changing Data in MySQL
Adding & Changing Data in MySQL
04/09/2004 04:05 PM"There are several ways to add and to change data in MySQL. There are
a few SQL statements that you can use, each with a few options.
Additionally, there are twists that you can do by mixing SQL
statements together with various clauses, some of which are available
with the release of version 4 of MySQL. In this article, I will
explore the ways in which data can be added and changed in MySQL."
Story
Data Globbing with MySQL Regex
Data Globbing with MySQL Regex
07/13/2004 11:50 PMAs I become a more experienced developer, I'm learning when you
should and shouldn't break the rules. While following every rule of
programming and data modeling is wonderful, sometimes you need to bend
the rules for the sake of simplicity and expediency.
Always remember, an app in the hand is worth a thousand on the
white board.
This being the case, lately I've been known to "glob" up data in
database fields. Yes, I know this breaks the first
normal form — that of atom
icity — but there are times when doing it right would
involve three more queries, two more database tables, another UI
screen, etc. Often it makes the cure worse than the disease.
For instance, consider this little XML document as the contents of
the "children" field for one of the records in my "church_attender"
table:
<children>
<child>
<first_name>Isabella</first_name>
;
<last_name>Barker</last_name>
</child>
<child>
<first_name>Gabrielle</first_name&g
t;
<last_name>Barker</last_name>
</child>
</children>
Now if I never wanted to search for individual children, I would
make no excuses for this. It saves us a database table, a join, and a
ton of complexity in the interface. Life is good.
Searching a globbed up field is a problem, though. We alluded to
it in this post when we said:
However, the problem is that the XML field is a black box
that — on most database platforms — you can't look inside.
What if you want a list of articles written by a particular author?
Well, you need to use SQL to get all the XML back, spin that
collection, XPath into every single one to find the value author of
the author node, then keep that record it matches.
So what if I want to find a person with a child named Gabrielle?
Some databases (Oracle, for one), will let you do something like
this:
SELECT * FROM church_attender WHERE
XPATH(children,'/child/first_name') = 'Gabrielle'
That'd be great, but I don't have Oracle. However, given our experience this week with MySQL regular expressions,
how unacceptable would this be:
SELECT * FROM church_attender WHERE children LIKE '%Gabrielle%' AND
children RLIKE '<children>.*<child>.*<first_name>
Gabrielle </first_name>.*</child>.*</children>'
(Note that there are some extra spaces in there just so the lines
would wrap.)
Yes, yes, I know the database Gods would frown on this, but given
the enourmous amount of complexity it would save us, is it acceptable?
Does the good outweigh the bad?
Fishing for opinions here. Let's hear them.
Click here to comment on this entry
The ultimate data center manager
The ultimate data center manager
03/31/2005 05:10 AMThe TV show “Monk” features a detective who’s
obsessive-compulsive. He gets bent out of shape over a picture hanging
off-center on a wall, or papers that aren’t lined up 100% evenly on
a desk. The joke is that his attention to detail is what makes him a
great detective (and an impossible person to work with).
Sybase, MySQL, IBM boost data management
Sybase, MySQL, IBM boost data management
04/19/2004 08:26 AMDatabase vendors Sybase, MySQL, and IBM are lacing products with
features that improve access to information and offer clustering and
fault tolerance.
Computerworld: MySQL Breaks Into the
Data Center
Computerworld: MySQL Breaks Into the
Data Center
10/29/2003 12:10 AM"Once dismissed as inadequate for high transaction volumes, the
open-source database's improved performance and low cost are winning
new converts--and shaking up the status quo in the database world..."
Synchronize MySQL Data Using SQLyog Job
Agent
Synchronize MySQL Data Using SQLyog Job
Agent
02/10/2004 02:42 AMWhat's the best and most efficient way to synchronize data between two
MySQL databases? Using SQLyog Job Agent (SJA)! Karam shows us how to
use SJA to your advantage in this quick-and-easy tutorial.
How to access MySQL data in Filemaker
via ODBC
How to access MySQL data in Filemaker
via ODBC
02/10/2004 12:01 PMIn order to import data from a MySQL database into FileMaker 6 via
ODBC, do not install the DataDirect ODBC driver that comes with
FileMaker. Instead, download the OpenLink one.If you decided to
install the DataDirect driver...
Zend: Growing a Tree of Data with PHP
and MySQL
Zend: Growing a Tree of Data with PHP
and MySQL
11/12/2002 08:35 AMOpen Sourcery: Backing Up Your MySQL
Data
Open Sourcery: Backing Up Your MySQL
Data
05/05/2004 08:16 AMMySQL has had, quite possibly, one
of the most impressive climbs to fame of any Open Source based
software I know. Of course, with this fame, there are more and more
people out there downloading it and setting it up on their
servers/home machines. Once it's up and working, though, one of the
most common questions is "how can I backup my information?". Well,
with a new posting this morning,
Open
Sourcery hopes to provide you with an easy and quick example.
Trigence releases data centre manager
Trigence releases data centre manager
06/07/2004 02:44 AMglobetechnology.com Jun 7 2004 6:24AM GMT
Local Data Manager 6.3.0 (Default
branch)
Local Data Manager 6.3.0 (Default
branch)
04/08/2005 06:05 PM
The Unidata Local Data Manager (LDM) is a
collection of cooperating programs that select,
capture, manage, and distribute arbitrary streams
of data over a network. The system is designed for
event-driven data distribution.
Changes:
This release adds the ability to set and display the network interface
and change the logging facility. The sending of final statistics from
rtstat's cleanup handler and pqbinstats utility has been fixed.
Documentation to describe changes and correct typos has been fixed.
Data Protection Manager 2006 Beta
Data Protection Manager 2006 Beta
04/14/2005 01:40 AMA disk based backup and recovery application (Download).
EnGarde Secure Linux Advisory: MySQL,
MySQL-client, MySQL-shared, mod_php, php
EnGarde Secure Linux Advisory: MySQL,
MySQL-client, MySQL-shared, mod_php, php
12/16/2002 04:17 PM"Stefan Esser from the PHP.net project discovered two vulnerabilities
in MySQL which range from crashing the server to executing arbitrary
code as the user under which the MySQL daemon runs (mysql)..."
Actimind Announces Free PC-to-Palm Data
Manager
Actimind Announces Free PC-to-Palm Data
Manager
04/09/2004 04:11 PMDevelopment Manager for Data, Search and
Management Solutions
Development Manager for Data, Search and
Management Solutions
03/22/2005 07:21 PMWhitePages.com - United States, Washington, Seattle (2005-03-22)
Microsoft Announce Data Protection
Manager 2006 Beta
Microsoft Announce Data Protection
Manager 2006 Beta
04/12/2005 01:47 PMIn an email sent to existing product testers today, Microsoft
announced the upcoming beta of System Center Data Protection Manager
2006.
Data Protection Manager, or DPM, is a software tool aimed at all
Windows users to aid the backup and recovery process. Microsoft have
long been keen on simplifying this feature in Windows, introducing the
system restore functionality with Windows XP.
The software features speedy recovery via disk-based backup systems,
allowing "recovering in minutes instead of hours";
continuous protection without impact IT services; integration with
tape drives via the Volume Shadow Copy Service API in Windows Server
2003. The company also hopes the software will offer good value for
money by letting IT professionals work on other tasks; as many a
Windows user / systems administrator will note, the process of backup
and recovery is a costly and time intensive one.
Microsoft claim that <a
href="http://www.microsoft.com/windowsserversystem/dps/partners/d
efault.mspx">30 partners</a> in the storage industry
have announced their support for the new software, and will be working
on creating solutions for Windows clients. Microsoft will make an
official announcement on the launch tomorrow.

View:
DPS Homepage
Read full story...[security bulletin] SSRT4785 rev. 0
HP-UX Process Resource Manager (PRM)
potential data corruption
[security bulletin] SSRT4785 rev. 0
HP-UX Process Resource Manager (PRM)
potential data corruption
08/10/2004 12:20 PMBoren, Rich (SSRT) (Aug 10 2004)
Microsoft® System Center Data
Protection Manager 2006 Beta Program
Invites Sent
Microsoft® System Center Data
Protection Manager 2006 Beta Program
Invites Sent
04/12/2005 01:42 PMYou have been identified by beta place as being an active tester in a
current or recent beta program that is willing to participate in a
future Microsoft beta program.
We would like to invite you to participate in the beta of Microsoft®
System Center Data Protection Manager (DPM), a new Microsoft product
that provides low-cost, continuous, disk-based backup and recovery
server application. A public beta version of Data Protection Manager
is now available.
Microsoft System Center Data Protection
Manager 2006 Beta Program Invites Sent
Microsoft System Center Data Protection
Manager 2006 Beta Program Invites Sent
04/12/2005 06:48 PMActiveWin.com Apr 12 2005 11:11PM GMT
Dekart SIM Manager 1.08 released - edit
and backup the mobile phone's data from
the SIM/USIM card
Dekart SIM Manager 1.08 released - edit
and backup the mobile phone's data from
the SIM/USIM card
07/03/2004 02:00 AMDekart ( www.dekart.com ) releases version 1.08 of Dekart SIM Manager,
the SIM card management software allowing to easily edit and backup
the mobile phone's data. The new version features extended support for
the Universal SIM cards (USIM), the cards of the 3rd generation mobile
wireless systems, as well as the support for different types of GSM
SIM cards, containing more than 250 phonebook entries. [PRWEB Jul 3,
2004]
Vialect Enhances their Intranet Software
Suite with a New Data Manager
application and Auto-Notification
feature.
Vialect Enhances their Intranet Software
Suite with a New Data Manager
application and Auto-Notification
feature.
06/15/2004 03:43 AMThe V5 release of IntraNET is now available from VIALECT. The release
includes both new applications and new features that provide users
with the ability to improve their collaboration and teamwork. These
new capabilities were added in response to customer feedback and
recommendations from resellers around the world. [PRWEB Jun 15, 2004]
Microsoft Releases Public Beta of
Microsoft System Center Data Protection
Manager
Microsoft Releases Public Beta of
Microsoft System Center Data Protection
Manager
04/13/2005 06:48 AMActiveWin.com Apr 13 2005 10:45AM GMT
SearchEnterpriseLinux: MySQL CEO: Open
Source MySQL Will Rise, Legal Foes Will
Fall
SearchEnterpriseLinux: MySQL CEO: Open
Source MySQL Will Rise, Legal Foes Will
Fall
02/01/2005 09:06 PM"None of the legal attacks on open source or Linux have been
successful. None of that stuff has gone anywhere. That's the biggest
story..."
MySQL: MySQL Administrator Now Availible
MySQL: MySQL Administrator Now Availible
02/12/2004 10:10 AMIn a new note passed along to me from
MarkL this morning,
there's some new information about the admin tool that the
MySQL folks have created.
MySQL: MySQL Administrator Announced
MySQL: MySQL Administrator Announced
01/22/2004 10:26 AMIn a startling new note from the
MySQL
development team, information about their newest application has
been posted on their site.
MySQL: MySQL 5.0.0 Has Been Released
MySQL: MySQL 5.0.0 Has Been Released
12/26/2003 07:47 PM"MySQL 5.0.0, a new version of the popular Open Source/Free Software
Database Management System, has been released..."
MySQL: PHP and MySQL Get a Little Closer
MySQL: PHP and MySQL Get a Little Closer
02/18/2003 04:17 PMMySQL: MySQL 4.0.20 Released
MySQL: MySQL 4.0.20 Released
05/20/2004 06:59 PM"MySQL 4.0.20, a new version of the popular Open Source/Free Software
Database
Management System, has been released..."
BBned selects Allied Data Technologies
as Supplier for combined Voice and Data
IAD
BBned selects Allied Data Technologies
as Supplier for combined Voice and Data
IAD
09/15/2004 02:24 AMAllied Data Technologies, specialist of Customer Premises Equipment
(CPE) for the Local Loop (PSTN, ISDN, xDSL), today announces their
agreement with BBned, largest provider for high-quality DSL services
in the Netherlands, for the supply of CPE equipment for their Voice
over DSL services in the Netherlands. The agreement involves the
delivery of Voice Integrated Access Devices (IAD), called the
CopperJet 816-2P, with the intention of a follow up order and delivery
next year. The initial shipment will take place this year. [PRWEB Sep
15, 2004]
Grok Description matches for Mysql Data Manager 1.72'
GrokA matches for Mysql Data Manager 1.72'
Mysql Data Manager 1.72'