Hello !
With M$ Query it's achieved just by executing any modification query
(insert,update,create etc).
Check the permissions for user from who the ODBC connections is performing.
Goodbye.
Dannis.
On Wed, Dec 05, 2001 at 04:46:22PM +0100, TOMASSONI Dominique wrote:
> Hello the list,
>
> Is it
Hello !
I often use that common scheme to parametrize my queries.
#!/bin/bash
#check parameters most commonly (only number of parameters)
if [ $# !=NUMBER_OF_PARAMETERS_NEEDED ];
then echo "Too few parameters";exit 1;
fi
# these are queries in my "transactional" procedure
# $1...$N ar
Hi.
Suppose I have dumped all database tables using mysqldump with --tab=... option and
I've got some *.sql and *.txt files one per table.
Ok, through the some time I want to see how changed a table living in server compared
with it's old copy I have dumped early.
I've decided to use some of th