Hi,

I used to have the same problem with Hebrew characters.

I am using mysql, I solved in this way

before you are creating the Database you should add it the support for your
language

# vim src/cats/create_mysql_database

search for this section

if $bindir/mysql $* -f <<END-OF-DATA
CREATE DATABASE ${db_name};
END-OF-DATA

and change it to something like this

if $bindir/mysql $* -f <<END-OF-DATA
CREATE DATABASE ${db_name} CHARACTER SET=hebrew;
END-OF-DATA

Eitan


2009/10/28 Personal Técnico <tecni...@caos.uab.es>

>  Hi,
>
> I'm getting errors during backup. Path for backup is "c:\documents and
> settings\Tom*à*s\Datos de Programa". Problems is "à". Log from backup
> register "c:\documents and settings\Tomà s\Datos de Programa", so of course,
> director doesn't find that path.
>
> What can I do?
>
> Clients is running on a Windows XP.
> Bacula server is 2.4.3 (dir, fd and sd)
> Bacula console client is version 3.0.1
>
> Thanks!!
>
>
> ------------------------------------------------------------------------------
> Come build with us! The BlackBerry(R) Developer Conference in SF, CA
> is the only developer event you need to attend this year. Jumpstart your
> developing skills, take BlackBerry mobile applications to market and stay
> ahead of the curve. Join us from November 9 - 12, 2009. Register now!
> http://p.sf.net/sfu/devconference
> _______________________________________________
> Bacula-users mailing list
> Bacula-users@lists.sourceforge.net
> https://lists.sourceforge.net/lists/listinfo/bacula-users
>
>
------------------------------------------------------------------------------
Come build with us! The BlackBerry(R) Developer Conference in SF, CA
is the only developer event you need to attend this year. Jumpstart your
developing skills, take BlackBerry mobile applications to market and stay 
ahead of the curve. Join us from November 9 - 12, 2009. Register now!
http://p.sf.net/sfu/devconference
_______________________________________________
Bacula-users mailing list
Bacula-users@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/bacula-users

Reply via email to