Search found 9 matches
- 13 Aug 2025, 11:26
- Forum: General
- Topic: why is the ticket locked when Admin OTRS gets assigned as new owner?
- Replies: 1
- Views: 2412
why is the ticket locked when Admin OTRS gets assigned as new owner?
According to source code , the ticket gets locked when an agent assigns a new owner to a ticket. While this is reasonable in general as stated in the znuny docs : Ticket ownership can be transferred between agents using Znuny’s agent interface. The primary way to reassign ownership is via the “Owner...
- 26 Feb 2025, 15:08
- Forum: Help
- Topic: Migrate from mySQL (mariaBD) to postgres - how?
- Replies: 10
- Views: 31530
Re: Migrate from mySQL (mariaBD) to postgres - how?
Did you verify that special characters e.g. diacritic symbols are well migrated too? E.g. Umlauts, cyrillic, latin diacritic symbols and so on do your fulltext searches still do a good job with your special chars? did the attachments work like a charm still? Yes to all :D As you were mentioning the...
- 26 Feb 2025, 14:57
- Forum: Help
- Topic: Migrate from mySQL (mariaBD) to postgres - how?
- Replies: 10
- Views: 31530
Re: Migrate from mySQL (mariaBD) to postgres - how?
Hey Kai,
this is great to hear! Thanks for the feedback!
Best
Gregor
this is great to hear! Thanks for the feedback!
Best
Gregor
- 26 Feb 2025, 14:55
- Forum: Help
- Topic: Creating System Address and Queue via Command Line – Circular Dependency?
- Replies: 2
- Views: 30848
Creating System Address and Queue via Command Line – Circular Dependency?
I'm trying to create a new system address and queue in Znuny using command line tools, but I’m running into a circular dependency issue. When I try to add a system address, it requires a queue: bin/otrs.Console.pl Admin::SystemAddress::Add --name testAddress --email-address test@example.com Error: p...
- 22 Jan 2025, 13:20
- Forum: Help
- Topic: Migrate from mySQL (mariaBD) to postgres - how?
- Replies: 10
- Views: 31530
Re: Migrate from mySQL (mariaBD) to postgres - how?
Yes, I successfully completed the migration from MySQL to PostgreSQL using CloneDB 6.5.2. However, during the process, I encountered a bug in the CloneDB package that required an adjustment in the Base.pm file. The issue was in line 290 of the Base.pm file: https://github.com/znuny/OTRSCloneDB/blob/...
- 13 Nov 2024, 18:13
- Forum: Help
- Topic: Migrate from mySQL (mariaBD) to postgres - how?
- Replies: 10
- Views: 31530
Re: Migrate from mySQL (mariaBD) to postgres - how?
I've decided to switch from using pgloader to CloneDB for my database migration. I completed the migration steps from OTRS 6.0 to Znuny versions 6.1, 6.2, 6.3, 6.4, and finally 6.5.11, and then used CloneDB to handle the MySQL to PostgreSQL migration (https://github.com/znuny/OTRSCloneDB/tree/rel-6....
- 09 Aug 2024, 16:42
- Forum: Help
- Topic: Migrate from mySQL (mariaBD) to postgres - how?
- Replies: 10
- Views: 31530
Re: Migrate from mySQL (mariaBD) to postgres - how?
Hi Roy, yes, I created a pgloader config file with CAST type int to integer, type datetime to timestamp, longtext to text As you know, the postgresql schema does not use BYTEA but all fields which are binary in mysql/mariaDB (LONGBLOB) are TEXT in pgsql. However, pgloader can transfer longblob only ...
- 09 Aug 2024, 15:11
- Forum: Help
- Topic: Migrate from mySQL (mariaBD) to postgres - how?
- Replies: 10
- Views: 31530
Re: Migrate from mySQL (mariaBD) to postgres - how?
When we have to deal with binary data like a jpg in standard_attachment.content, the problem is how to get this binary data over to the TEXT field in postgresql (the schema sql for postgresql defines this field to be of type TEXT). pgloader handles LONGBLOB (which is used in the mysql schema) fields...
- 09 Aug 2024, 12:58
- Forum: Help
- Topic: Migrate from mySQL (mariaBD) to postgres - how?
- Replies: 10
- Views: 31530
Migrate from mySQL (mariaBD) to postgres - how?
Hi all, I intend to migrate from otrs 6.0.18 to znuny 6.5 and thereby also to switch from mariaDB to postgres. I already tried the DB migration with the help of pgloader and noticed that some type casts should be set in the pgloader config file (e.g. datetime from mariaDB is migrated to 'datetime wi...