Dear Dhis2 users how can i delete?

Dear all, how can i delete a data element with data inside?

···

On Thu Sep 8th, 2011 1:03 AM PDT Lars Helge Øverland wrote:

Hi all,

since DHIS 2.4 was released on Aug 28. it has been used in production
in Kenya and Ghana. In that regard we have received lots of feedback
and done a range of improvements and bugfixes. We recommend everyone
to take advantage of this and download the latest build of DHIS 2.4
from here:

Downloads - DHIS2

We will print the date of when these builds are updated next to the
download to make it easy for you to know when to upgrade.

regards, Lars

_______________________________________________
Mailing list: DHIS 2 Users in Launchpad
Post to : dhis2-users@lists.launchpad.net
Unsubscribe : DHIS 2 Users in Launchpad
More help : ListHelp - Launchpad Help

Hi Andrew,

you need to remove the data with SQL in the database. Run:

delete from datavalue_audit where dataelementid=<id>;
delete from datavalue where dataelementid=<id>;

and replace <id> with the dataelementid of the one you want to remove.

You can then go ahead and delete the data element in the user interface.

Lars

As a rule of thumb, it is usually wise to do a SELECT before a DELETE, so that you are 100% sure you are not deleting data you really need.

In this case:

select * from datavalue_audit where dataelementid=;

select * from datavalue where dataelementid=;

Knut

···

2011/9/12 Lars Helge Øverland larshelge@gmail.com

Hi Andrew,

you need to remove the data with SQL in the database. Run:

delete from datavalue_audit where dataelementid=;

delete from datavalue where dataelementid=;

and replace with the dataelementid of the one you want to remove.

You can then go ahead and delete the data element in the user interface.

Lars


Mailing list: https://launchpad.net/~dhis2-devs

Post to : dhis2-devs@lists.launchpad.net

Unsubscribe : https://launchpad.net/~dhis2-devs

More help : https://help.launchpad.net/ListHelp


Knut Staring

Informatics, U. of Oslo

http://hisp.uio.no

+4791880522

Thanx Lars for the quick help.

···

Muhire Andrew

HMIS/Ministry of Health

andrew.muhire@moh.gov.rw

God is my provider.


From: Lars Helge Øverland larshelge@gmail.com
To: Muhire Andrew muhireandrew@yahoo.com
Cc: dhis2-devs@lists.launchpad.net; dhis2-users@lists.launchpad.net
Sent: Monday, September 12, 2011 3:51 PM
Subject: Re: Dear Dhis2 users how can i delete?

Hi Andrew,

you need to remove the data with SQL in the database. Run:

delete from datavalue_audit where dataelementid=;
delete from datavalue where dataelementid=;

and replace with the dataelementid of the one you want to remove.

You can then go ahead and delete the data element in the user interface.

Lars

Thank you all,

Great Knut its rilly good to select first and then delete because it can cause problems in case i delete the needed data.

···

Muhire Andrew

HMIS/Ministry of Health

andrew.muhire@moh.gov.rw

God is my provider.


From: Knut Staring knutst@gmail.com
To: Lars Helge Øverland larshelge@gmail.com
Cc: Muhire Andrew muhireandrew@yahoo.com; dhis2-users@lists.launchpad.net; dhis2-devs@lists.launchpad.net
Sent: Monday, September 12, 2011 3:56 PM
Subject: Re: [Dhis2-devs] Dear Dhis2 users how can i delete?

As a rule of thumb, it is usually wise to do a SELECT before a DELETE, so that you are 100% sure you are not deleting data you really need.

In this case:

select * from datavalue_audit where dataelementid=;

select * from datavalue where dataelementid=;

Knut

2011/9/12 Lars Helge Øverland larshelge@gmail.com

Hi Andrew,

you need to remove the data with SQL in the database. Run:

delete from datavalue_audit where dataelementid=;

delete from datavalue where dataelementid=;

and replace with the dataelementid of the one you want to remove.

You can then go ahead and delete the data element in the user interface.

Lars


Mailing list: https://launchpad.net/~dhis2-devs

Post to : dhis2-devs@lists.launchpad.net

Unsubscribe : https://launchpad.net/~dhis2-devs
More help : https://help.launchpad.net/ListHelp


Knut Staring

Informatics, U. of Oslo

http://hisp.uio.no

+4791880522

It is best practice in all cases to ensure to you make a backup of your database. Even with SELECT and DELETE, you may unknowingly make a typing mistake. Anytime you start messing around with the database directly, ensure you first make a backup, so that you can easily restore the database in case you mess up something unintentionally.

Another trick is to use a "SELECT INTO " statement, to put all of the data you are about to delete into a separate table, and then perform the delete operation. This way, it is relatively easy to see what you have deleted and restore it once again, without reverting to a complete backup restore.

Regards,

Jason

···

2011/9/12 Muhire Andrew muhireandrew@yahoo.com

Thank you all,

Great Knut its rilly good to select first and then delete because it can cause problems in case i delete the needed data.


Muhire Andrew

HMIS/Ministry of Health

andrew.muhire@moh.gov.rw

God is my provider.


From: Knut Staring knutst@gmail.com

To: Lars Helge Øverland larshelge@gmail.com
Cc: Muhire Andrew muhireandrew@yahoo.com; dhis2-users@lists.launchpad.net; dhis2-devs@lists.launchpad.net

Sent: Monday, September 12, 2011 3:56 PM
Subject: Re: [Dhis2-devs] Dear Dhis2 users how can i delete?

As a rule of thumb, it is usually wise to do a SELECT before a DELETE, so that you are 100% sure you are not deleting data you really need.

In this case:

select * from datavalue_audit where dataelementid=;

select * from datavalue where dataelementid=;

Knut

2011/9/12 Lars Helge Øverland larshelge@gmail.com

Hi Andrew,

you need to remove the data with SQL in the database. Run:

delete from datavalue_audit where dataelementid=;

delete from datavalue where dataelementid=;

and replace with the dataelementid of the one you want to remove.

You can then go ahead and delete the data element in the user interface.

Lars


Mailing list: https://launchpad.net/~dhis2-devs

Post to : dhis2-devs@lists.launchpad.net

Unsubscribe : https://launchpad.net/~dhis2-devs
More help : https://help.launchpad.net/ListHelp


Knut Staring

Informatics, U. of Oslo

http://hisp.uio.no

+4791880522


Mailing list: https://launchpad.net/~dhis2-devs

Post to : dhis2-devs@lists.launchpad.net

Unsubscribe : https://launchpad.net/~dhis2-devs

More help : https://help.launchpad.net/ListHelp

Thanks for the quick help,

i have successfully used the select and delete steps
(in datavalues and datavalue_audit)

but using replace is not working on my side may be am not using it well? please update me again (only replace syntax). i have deleted data from my data element x and next step was to use replace but am getting syntax error!

waiting for your help dear team!

···
  • Muhire Andrew*

HMIS/Ministry of Health

andrew.muhire@moh.gov.rw

God is my provider.


From: Lars Helge Øverland larshelge@gmail.com
To: Muhire Andrew muhireandrew@yahoo.com
Cc: dhis2-devs@lists.launchpad.net; dhis2-users@lists.launchpad.net
Sent: Monday, September 12, 2011 3:51 PM
Subject: Re: Dear Dhis2 users how can i delete?

Hi Andrew,

you need to remove the data with SQL in the database. Run:

delete from datavalue_audit where dataelementid=;
delete from datavalue where dataelementid=;

and replace with the dataelementid of the one you want to remove.

You can then go ahead and delete the data element in the user interface.

Lars

Thanks for the quick help,

(in datavalues and datavalue_audit)

i have successfully used the select and delete steps
but using replace is not working on my side may be am not using it well? please update me again (only replace syntax). i have deleted data from my data element x and next step was to use replace but am getting syntax error! and if i check my data in data entry form i find no data and if i delete the data element in an interface next time i get error message for the unreplaced id when i open the form.

waiting for your help dear team!

···

Muhire Andrew

HMIS/Ministry of Health

andrew.muhire@moh.gov.rw

God is my provider.


From: Jason Pickering jason.p.pickering@gmail.com
To: Muhire Andrew muhireandrew@yahoo.com
Cc: Knut Staring knutst@gmail.com; Lars Helge Øverland larshelge@gmail.com; “dhis2-users@lists.launchpad.netdhis2-users@lists.launchpad.net; “dhis2-devs@lists.launchpad.netdhis2-devs@lists.launchpad.net
Sent: Monday, September 12, 2011 4:13 PM
Subject: Re: [Dhis2-devs] Dear Dhis2 users how can i delete?

It is best practice in all cases to ensure to you make a backup of your database. Even with SELECT and DELETE, you may unknowingly make a typing mistake. Anytime you start messing around with the database directly, ensure you first make a backup, so that you can easily restore the database in case you mess up something unintentionally.

Another trick is to use a "SELECT INTO " statement, to put all of the data you are about to delete into a separate table, and then perform the delete operation. This way, it is relatively easy to see what you have deleted and restore it once again, without reverting to a complete backup restore.

Regards,

Jason

2011/9/12 Muhire Andrew muhireandrew@yahoo.com

Thank you all,

Great Knut its rilly good to select first and then delete because it can cause problems in case i delete the needed data.


Muhire Andrew

HMIS/Ministry of Health

andrew.muhire@moh.gov.rw

God is my provider.


From: Knut Staring knutst@gmail.com

To: Lars Helge Øverland larshelge@gmail.com
Cc: Muhire Andrew muhireandrew@yahoo.com; dhis2-users@lists.launchpad.net; dhis2-devs@lists.launchpad.net

Sent: Monday, September 12, 2011 3:56 PM
Subject: Re: [Dhis2-devs] Dear Dhis2 users how can i delete?

As a rule of thumb, it is usually wise to do a SELECT before a DELETE, so that you are 100% sure you are not deleting data you really need.

In this case:

select * from datavalue_audit where dataelementid=;

select * from datavalue where dataelementid=;

Knut

2011/9/12 Lars Helge Øverland larshelge@gmail.com

Hi Andrew,

you need to remove the data with SQL in the database. Run:

delete from datavalue_audit where dataelementid=;

delete from datavalue where dataelementid=;

and replace with the dataelementid of the one you want to remove.

You can then go ahead and delete the data element in the user interface.

Lars


Mailing list: https://launchpad.net/~dhis2-devs

Post to : dhis2-devs@lists.launchpad.net

Unsubscribe : https://launchpad.net/~dhis2-devs
More help : https://help.launchpad.net/ListHelp


Knut Staring

Informatics, U. of Oslo

http://hisp.uio.no

+4791880522


Mailing list: https://launchpad.net/~dhis2-devs

Post to : dhis2-devs@lists.launchpad.net

Unsubscribe : https://launchpad.net/~dhis2-devs

More help : https://help.launchpad.net/ListHelp

Can you paste the exact query which you are using?

···

On Mon, Sep 12, 2011 at 5:04 PM, Muhire Andrew muhireandrew@yahoo.com wrote:

Thanks for the quick help,

(in datavalues and datavalue_audit)

i have successfully used the select and delete steps
but using replace is not working on my side may be am not using it well? please update me again (only replace syntax). i have deleted data from my data element x and next step was to use replace but am getting syntax error! and if i check my data in data entry form i find no data and if i delete the data element in an interface next time i get error message for the unreplaced id when i open the form.

waiting for your help dear team!


Muhire Andrew

HMIS/Ministry of Health

andrew.muhire@moh.gov.rw

God is my provider.


From: Jason Pickering jason.p.pickering@gmail.com

To: Muhire Andrew muhireandrew@yahoo.com
Cc: Knut Staring knutst@gmail.com; Lars Helge Øverland larshelge@gmail.com; “dhis2-users@lists.launchpad.netdhis2-users@lists.launchpad.net; “dhis2-devs@lists.launchpad.netdhis2-devs@lists.launchpad.net

Sent: Monday, September 12, 2011 4:13 PM
Subject: Re: [Dhis2-devs] Dear Dhis2 users how can i delete?

It is best practice in all cases to ensure to you make a backup of your database. Even with SELECT and DELETE, you may unknowingly make a typing mistake. Anytime you start messing around with the database directly, ensure you first make a backup, so that you can easily restore the database in case you mess up something unintentionally.

Another trick is to use a "SELECT INTO " statement, to put all of the data you are about to delete into a separate table, and then perform the delete operation. This way, it is relatively easy to see what you have deleted and restore it once again, without reverting to a complete backup restore.

Regards,

Jason

2011/9/12 Muhire Andrew muhireandrew@yahoo.com

Thank you all,

Great Knut its rilly good to select first and then delete because it can cause problems in case i delete the needed data.


Muhire Andrew

HMIS/Ministry of Health

andrew.muhire@moh.gov.rw

God is my provider.


From: Knut Staring knutst@gmail.com

To: Lars Helge Øverland larshelge@gmail.com
Cc: Muhire Andrew muhireandrew@yahoo.com; dhis2-users@lists.launchpad.net; dhis2-devs@lists.launchpad.net

Sent: Monday, September 12, 2011 3:56 PM
Subject: Re: [Dhis2-devs] Dear Dhis2 users how can i delete?

As a rule of thumb, it is usually wise to do a SELECT before a DELETE, so that you are 100% sure you are not deleting data you really need.

In this case:

select * from datavalue_audit where dataelementid=;

select * from datavalue where dataelementid=;

Knut

2011/9/12 Lars Helge Øverland larshelge@gmail.com

Hi Andrew,

you need to remove the data with SQL in the database. Run:

delete from datavalue_audit where dataelementid=;

delete from datavalue where dataelementid=;

and replace with the dataelementid of the one you want to remove.

You can then go ahead and delete the data element in the user interface.

Lars


Mailing list: https://launchpad.net/~dhis2-devs

Post to : dhis2-devs@lists.launchpad.net

Unsubscribe : https://launchpad.net/~dhis2-devs
More help : https://help.launchpad.net/ListHelp


Knut Staring

Informatics, U. of Oslo

http://hisp.uio.no

+4791880522


Mailing list: https://launchpad.net/~dhis2-devs

Post to : dhis2-devs@lists.launchpad.net

Unsubscribe : https://launchpad.net/~dhis2-devs

More help : https://help.launchpad.net/ListHelp

Hi Andrew,

There seems to be some confusion: You need to “replace” in the SQL statement before you run it. In order to find the right ID that should form part of the DELETE statement, you need to look at the dataelement table in your database, and e.g. run something like

"SELECT dataelementid FROM dataelement WHERE name= ‘The name of your dataelement here’.

Is your DHIS2 available online?

Knut

···

On Mon, Sep 12, 2011 at 5:04 PM, Muhire Andrew muhireandrew@yahoo.com wrote:

Thanks for the quick help,

(in datavalues and datavalue_audit)

i have successfully used the select and delete steps
but using replace is not working on my side may be am not using it well? please update me again (only replace syntax). i have deleted data from my data element x and next step was to use replace but am getting syntax error! and if i check my data in data entry form i find no data and if i delete the data element in an interface next time i get error message for the unreplaced id when i open the form.

waiting for your help dear team!


Muhire Andrew

HMIS/Ministry of Health

andrew.muhire@moh.gov.rw

God is my provider.


From: Jason Pickering jason.p.pickering@gmail.com

To: Muhire Andrew muhireandrew@yahoo.com
Cc: Knut Staring knutst@gmail.com; Lars Helge Øverland larshelge@gmail.com; “dhis2-users@lists.launchpad.netdhis2-users@lists.launchpad.net; “dhis2-devs@lists.launchpad.netdhis2-devs@lists.launchpad.net

Sent: Monday, September 12, 2011 4:13 PM
Subject: Re: [Dhis2-devs] Dear Dhis2 users how can i delete?

It is best practice in all cases to ensure to you make a backup of your database. Even with SELECT and DELETE, you may unknowingly make a typing mistake. Anytime you start messing around with the database directly, ensure you first make a backup, so that you can easily restore the database in case you mess up something unintentionally.

Another trick is to use a "SELECT INTO " statement, to put all of the data you are about to delete into a separate table, and then perform the delete operation. This way, it is relatively easy to see what you have deleted and restore it once again, without reverting to a complete backup restore.

Regards,

Jason

2011/9/12 Muhire Andrew muhireandrew@yahoo.com

Thank you all,

Great Knut its rilly good to select first and then delete because it can cause problems in case i delete the needed data.


Muhire Andrew

HMIS/Ministry of Health

andrew.muhire@moh.gov.rw

God is my provider.


From: Knut Staring knutst@gmail.com

To: Lars Helge Øverland larshelge@gmail.com
Cc: Muhire Andrew muhireandrew@yahoo.com; dhis2-users@lists.launchpad.net; dhis2-devs@lists.launchpad.net

Sent: Monday, September 12, 2011 3:56 PM
Subject: Re: [Dhis2-devs] Dear Dhis2 users how can i delete?

As a rule of thumb, it is usually wise to do a SELECT before a DELETE, so that you are 100% sure you are not deleting data you really need.

In this case:

select * from datavalue_audit where dataelementid=;

select * from datavalue where dataelementid=;

Knut

2011/9/12 Lars Helge Øverland larshelge@gmail.com

Hi Andrew,

you need to remove the data with SQL in the database. Run:

delete from datavalue_audit where dataelementid=;

delete from datavalue where dataelementid=;

and replace with the dataelementid of the one you want to remove.

You can then go ahead and delete the data element in the user interface.

Lars


Mailing list: https://launchpad.net/~dhis2-devs

Post to : dhis2-devs@lists.launchpad.net

Unsubscribe : https://launchpad.net/~dhis2-devs
More help : https://help.launchpad.net/ListHelp


Knut Staring

Informatics, U. of Oslo

http://hisp.uio.no

+4791880522


Mailing list: https://launchpad.net/~dhis2-devs

Post to : dhis2-devs@lists.launchpad.net

Unsubscribe : https://launchpad.net/~dhis2-devs

More help : https://help.launchpad.net/ListHelp


Knut Staring

Informatics, U. of Oslo

http://hisp.uio.no

+4791880522

Hi,

The only two commands you should run on your database are the two delete statements;

delete from datavalue_audit where dataelementid=;

delete from datavalue where dataelementid=;

“Replace” is not a command, just Lars telling you to change the in the two commands above with the real IDs of your data elements.

Seems all is fine then. You can now try deleting the data elements from the DHIS 2 user interface.

Ola

···

Ola Hodne Titlestad (Mr)
HISP
Department of Informatics
University of Oslo

Mobile: +47 48069736
Home address: Vetlandsvn. 95B, 0685 Oslo, Norway. Googlemaps link

2011/9/12 Muhire Andrew muhireandrew@yahoo.com

Thanks for the quick help,

i have successfully used the select and delete steps
(in datavalues and datavalue_audit)

but using replace is not working on my side may be am not using it well? please update me again (only replace syntax). i have deleted data from my data element x and next step was to use replace but am getting syntax error!

waiting for your help dear team!


  • Muhire Andrew*

HMIS/Ministry of Health

andrew.muhire@moh.gov.rw

God is my provider.


From: Lars Helge Øverland larshelge@gmail.com

To: Muhire Andrew muhireandrew@yahoo.com
Cc: dhis2-devs@lists.launchpad.net ; dhis2-users@lists.launchpad.net
Sent: Monday, September 12, 2011 3:51 PM
Subject: Re: Dear Dhis2 users how can i delete?

Hi Andrew,

you need to remove the data with SQL in the database. Run:

delete from datavalue_audit where dataelementid=;
delete from datavalue where dataelementid=;

and replace with the dataelementid of the one you want to remove.

You can then go ahead and delete the data element in the user interface.

Lars


Mailing list: https://launchpad.net/~dhis2-users

Post to : dhis2-users@lists.launchpad.net

Unsubscribe : https://launchpad.net/~dhis2-users

More help : https://help.launchpad.net/ListHelp

Dear team,
In Dar es salaam workshop some of the countries were doing pilot on using Mobile reporting and Benificiary and programs features in dhis2 [how is it running in the countries that has started using it] ? Tanzania how is it? I think this will be our next step in Rwanda!
How can i link with the team that is working on mobile part?
thanks

···

Muhire Andrew

HMIS/Ministry of Health

andrew.muhire@moh.gov.rw

God is my provider.


From: Ola Hodne Titlestad olati@ifi.uio.no
To: Muhire Andrew muhireandrew@yahoo.com
Cc: Lars Helge Øverland larshelge@gmail.com; “dhis2-users@lists.launchpad.netdhis2-users@lists.launchpad.net; “dhis2-devs@lists.launchpad.netdhis2-devs@lists.launchpad.net
Sent: Monday, September 12, 2011 9:58 PM
Subject: Re: [Dhis2-users] Dear Dhis2 users how can i delete?

Hi,

The only two commands you should run on your database are the two delete statements;

delete from datavalue_audit where dataelementid=;

delete from datavalue where dataelementid=;

“Replace” is not a command, just Lars telling you to change the in the two commands above with the real IDs of your data elements.

Seems all is fine then. You can now try deleting the data elements from the DHIS 2 user interface.

Ola



Ola Hodne Titlestad (Mr)
HISP
Department of Informatics
University
of Oslo

Mobile: +47 48069736
Home address: Vetlandsvn. 95B, 0685 Oslo, Norway. Googlemaps
link

2011/9/12 Muhire Andrew muhireandrew@yahoo.com

Thanks for the quick help,

i have successfully used the select and delete steps
(in datavalues and datavalue_audit)

but using replace is not working on my side may be am not using it well? please update me again (only replace syntax). i have deleted data from my data element x and next
step was to use replace but am getting syntax error!

waiting for your help dear team!


  • Muhire
    Andrew*

HMIS/Ministry of Health

andrew.muhire@moh.gov.rw

God is my provider.


From: Lars Helge Øverland larshelge@gmail.com

To: Muhire Andrew muhireandrew@yahoo.com
Cc: dhis2-devs@lists.launchpad.net ;
dhis2-users@lists.launchpad.net
Sent: Monday, September 12, 2011 3:51 PM
Subject: Re: Dear Dhis2 users how can i delete?

Hi Andrew,

you need to remove the data with SQL in the database. Run:

delete from datavalue_audit where dataelementid=;
delete from datavalue where dataelementid=;

and replace with the dataelementid of the one you want to remove.

You can then go ahead and delete the data element in the user interface.

Lars


Mailing list: https://launchpad.net/~dhis2-users

Post to : dhis2-users@lists.launchpad.net

Unsubscribe : https://launchpad.net/~dhis2-users

More help : https://help.launchpad.net/ListHelp

Dear team,
In Dar es salaam workshop some of the countries were doing pilot on using Mobile reporting and Benificiary and programs features in dhis2 [how is it running in the countries that has started using it] ? Tanzania how is it? I think this will be our next step in Rwanda!

How can i link with the team that is working on mobile part?

Hi Andrew,

The existing mobile solutions are based on J2ME clients, and are already quite useful. The field introduction has so far mostly been SMS based, but we feel that mobile internet (GPRS, 3G) will be a better option in most cases. It is still early days, and I am involved in the planning of future solutions. We hope to have a first version of a WAP or Opera Mini type solution for simple facility reporting (aggregate date) as part of the 2.5 release in October. Quite a bit more development is planned for the next 6 months, which will also touch on name based solutions (DHIS Tracker).

You should probably await these new developments, becasue they will hopefully be both more stable and flexible than the current solution. Also, before introducing any mobile solutions, it is quite important to implement a solid DHIS2 back bone, and make sure the roll out works well. So I think this should wait until after the switch to DHIS2 as the new HMIS.

Knut

···

On Wed, Sep 14, 2011 at 7:02 PM, Muhire Andrew muhireandrew@yahoo.com wrote:

thanks


Muhire Andrew

HMIS/Ministry of Health

andrew.muhire@moh.gov.rw

God is my provider.

To: Muhire Andrew muhireandrew@yahoo.com


From: Ola Hodne Titlestad olati@ifi.uio.noCc: Lars Helge Øverland larshelge@gmail.com; “dhis2-users@lists.launchpad.netdhis2-users@lists.launchpad.net; "dhis2-devs@lists.launchpad.net " dhis2-devs@lists.launchpad.net
Sent: Monday, September 12, 2011 9:58 PM
Subject: Re: [Dhis2-users] Dear Dhis2 users how can i delete?

Hi,

The only two commands you should run on your database are the two delete statements;

delete from datavalue_audit where dataelementid=;

delete from datavalue where dataelementid=;

“Replace” is not a command, just Lars telling you to change the in the two commands above with the real IDs of your data elements.

Seems all is fine then. You can now try deleting the data elements from the DHIS 2 user interface.

Ola



Ola Hodne Titlestad (Mr)
HISP
Department of Informatics
University of Oslo

Mobile: +47 48069736
Home address: Vetlandsvn. 95B, 0685 Oslo, Norway. Googlemaps link

2011/9/12 Muhire Andrew muhireandrew@yahoo.com

Thanks for the quick help,

i have successfully used the select and delete steps
(in datavalues and datavalue_audit)

but using replace is not working on my side may be am not using it well? please update me again (only replace syntax). i have deleted data from my data element x and next step was to use replace but am getting syntax error!

waiting for your help dear team!


  • Muhire Andrew*

HMIS/Ministry of Health

andrew.muhire@moh.gov.rw

God is my provider.


From: Lars Helge Øverland larshelge@gmail.com

To: Muhire Andrew muhireandrew@yahoo.com
Cc: dhis2-devs@lists.launchpad.net ; dhis2-users@lists.launchpad.net
Sent: Monday, September 12, 2011 3:51 PM
Subject: Re: Dear Dhis2 users how can i delete?

Hi Andrew,

you need to remove the data with SQL in the database. Run:

delete from datavalue_audit where dataelementid=;
delete from datavalue where dataelementid=;

and replace with the dataelementid of the one you want to remove.

You can then go ahead and delete the data element in the user interface.

Lars


Mailing list: https://launchpad.net/~dhis2-users

Post to : dhis2-users@lists.launchpad.net

Unsubscribe : https://launchpad.net/~dhis2-users

More help : https://help.launchpad.net/ListHelp


Mailing list: https://launchpad.net/~dhis2-users

Post to : dhis2-users@lists.launchpad.net

Unsubscribe : https://launchpad.net/~dhis2-users

More help : https://help.launchpad.net/ListHelp


Knut Staring

Informatics, U. of Oslo

http://hisp.uio.no

+4791880522

Dear team,
In Dar es salaam workshop, some of the countries were doing pilot on using Mobile reporting and Benificiary and programs
features in dhis2 [how is it running in the countries that has started
using it] ? Tanzania how is it? I think this will be our next step in Rwanda!
How can i link with the team that is working on mobile part?
thanks

···

Muhire Andrew

HMIS/Ministry of Health

andrew.muhire@moh.gov.rw

God is my provider.


From: Knut Staring knutst@gmail.com
To: Muhire Andrew muhireandrew@yahoo.com
Cc: Ola Hodne Titlestad olati@ifi.uio.no; “dhis2-users@lists.launchpad.netdhis2-users@lists.launchpad.net; “dhis2-devs@lists.launchpad.netdhis2-devs@lists.launchpad.net
Sent: Wednesday, September 14, 2011 8:16 PM
Subject: Re: [Dhis2-users] Dear Dhis2 users how can i delete?

On Wed, Sep 14, 2011 at 7:02 PM, Muhire Andrew muhireandrew@yahoo.com wrote:

Dear team,
In Dar es salaam workshop some of the countries were doing pilot on using Mobile reporting and Benificiary and programs features in dhis2 [how is it running in the countries that has started using it] ? Tanzania how is it? I think this will be our next step in Rwanda!

How can i link with the team that is working on mobile part?

Hi Andrew,

The existing mobile solutions are based on J2ME clients, and are already
quite useful. The field introduction has so far mostly been SMS based, but we feel that mobile internet (GPRS, 3G) will be a better option in most cases. It is still early days, and I am involved in the planning of
future solutions. We hope to have a first version of a WAP or Opera Mini type solution for simple facility reporting (aggregate date) as part of the 2.5 release in October. Quite a bit more development is planned for the next 6 months, which will also touch on name based solutions (DHIS Tracker).

You should probably await these new developments, becasue they will hopefully be both more stable and flexible than the current solution. Also, before introducing any mobile solutions, it is quite important to implement a solid DHIS2 back bone, and make sure the roll out works well. So I think this should wait until after the switch to DHIS2 as the
new HMIS.

Knut

thanks


Muhire Andrew

HMIS/Ministry of Health

andrew.muhire@moh.gov.rw

God is my provider.

To: Muhire Andrew muhireandrew@yahoo.com


From: Ola Hodne Titlestad olati@ifi.uio.noCc: Lars Helge Øverland larshelge@gmail.com; “dhis2-users@lists.launchpad.netdhis2-users@lists.launchpad.net; "dhis2-devs@lists.launchpad.net "
dhis2-devs@lists.launchpad.net
Sent: Monday, September 12, 2011 9:58 PM
Subject: Re: [Dhis2-users] Dear Dhis2 users how can i delete?

Hi,

The only two commands you should run on your database are the two delete statements;

delete from datavalue_audit where dataelementid=;

delete from datavalue where dataelementid=;

“Replace” is not a command, just Lars telling you to change the in the two commands above with the real IDs of your data elements.

Seems all is fine then. You can now try deleting the data elements from the DHIS 2 user interface.

Ola



Ola Hodne Titlestad (Mr)
HISP
Department of Informatics
University
of Oslo

Mobile: +47 48069736
Home address: Vetlandsvn. 95B, 0685 Oslo, Norway. Googlemaps
link

2011/9/12 Muhire Andrew muhireandrew@yahoo.com

Thanks for the quick help,

i have successfully used the select and delete steps
(in datavalues and datavalue_audit)

but using replace is not working on my side may be am not using it well? please update me again (only replace syntax). i have deleted data from my data element x and next
step was to use replace but am getting syntax error!

waiting for your help dear team!


  • Muhire
    Andrew*

HMIS/Ministry of Health

andrew.muhire@moh.gov.rw

God is my provider.


From: Lars Helge Øverland larshelge@gmail.com

To: Muhire Andrew muhireandrew@yahoo.com
Cc: dhis2-devs@lists.launchpad.net ;
dhis2-users@lists.launchpad.net
Sent: Monday, September 12, 2011 3:51 PM
Subject: Re: Dear Dhis2 users how can i delete?

Hi Andrew,

you need to remove the data with SQL in the database. Run:

delete from datavalue_audit where dataelementid=;
delete from datavalue where dataelementid=;

and replace with the dataelementid of the one you want to remove.

You can then go ahead and delete the data element in the user interface.

Lars


Mailing list: https://launchpad.net/~dhis2-users

Post to : dhis2-users@lists.launchpad.net

Unsubscribe : https://launchpad.net/~dhis2-users

More help : https://help.launchpad.net/ListHelp


Mailing list: https://launchpad.net/~dhis2-users

Post to : dhis2-users@lists.launchpad.net

Unsubscribe : https://launchpad.net/~dhis2-users

More help : https://help.launchpad.net/ListHelp


Knut Staring

Informatics, U. of Oslo

http://hisp.uio.no

+4791880522

Hi,

there will be two parallel mobile clients, one mobile browser

solution and one J2ME based solution. The J2ME solution has an
offline function so you don’t have to be online all the time, while
the mobile browsing version will require you to be online when
you’re using it. The J2ME version needs to either be online or on
SMS while reporting. Because the J2ME caches the forms, in some ways
it’s more but also less flexible than the mobile browser version.

LIke Knut is saying first mobile browser version is planned to be

limited to Aggregate Facility data, but Name Based Activity will
follow it quickly (and be dependent on requirements from the various
countries). Your input is there very valuable to us.

The J2ME version available at the same time supports both.

Will the mobile coverage in the usage area be good enough to support

a browser based solution? Would a fallback to SMS be useful at all?
(the prefered solution is that GPRS is always used, as it’s simpler
to deploy)

Are you planning a solution for aggregate facility data only, or do

you want to use the name based activity (program) features also?

Best regards,

Lars Roland (I'm working with Knut as part of the mobile team).
···

-- Lars Kristian Roland
+47 90733036 - lars.roland.bz

Lars@roland.bzwww.apus.no

Hi there. We have been using the GPRS client here in Zambia for about 6 months now. We currently have about 200+ mobiles (and growing) in the field reporting about 20 data elements (only) on a weekly basis. In general, we have had very few problems technical problems. We have worked very closely with the developers however to work out a few bugs and issues, but all in all this has been really very minor stuff.

The system is being used specifically for targeted facilities for monitoring of logistics and surveillance to support the National Malaria Control Programme. There has been significant interest from neighboring countries (Botswana, Tanzania as well as Senegal) which means that coordination among efforts is particular important as we move forward.

As Knut says, establishing a firm DHIS2 backbone is key. We opted for a cloud-based solution, which simplifies a number of issues and mitigates a number of risks. I would encourage you to consider the same approach.

Regards,

Jason

···

On Wed, Sep 14, 2011 at 7:30 PM, Muhire Andrew muhireandrew@yahoo.com wrote:

Dear team,
In Dar es salaam workshop, some of the countries were doing pilot on using Mobile reporting and Benificiary and programs
features in dhis2 [how is it running in the countries that has started using it] ? Tanzania how is it? I think this will be our next step in Rwanda!
How can i link with the team that is working on mobile part?
thanks


*Muhire Andrew
*

HMIS/Ministry of Health

andrew.muhire@moh.gov.rw

God is my provider.


From: Knut Staring knutst@gmail.com
To: Muhire Andrew muhireandrew@yahoo.com

Cc: Ola Hodne Titlestad olati@ifi.uio.no; “dhis2-users@lists.launchpad.netdhis2-users@lists.launchpad.net; “dhis2-devs@lists.launchpad.netdhis2-devs@lists.launchpad.net

Sent: Wednesday, September 14, 2011 8:16 PM
Subject: Re: [Dhis2-users] Dear Dhis2 users how can i delete?

On Wed, Sep 14, 2011 at 7:02 PM, Muhire Andrew muhireandrew@yahoo.com wrote:

Dear team,
In Dar es salaam workshop some of the countries were doing pilot on using Mobile reporting and Benificiary and programs features in dhis2 [how is it running in the countries that has started using it] ? Tanzania how is it? I think this will be our next step in Rwanda!

How can i link with the team that is working on mobile part?

Hi Andrew,

The existing mobile solutions are based on J2ME clients, and are already quite useful. The field introduction has so far mostly been SMS based, but we feel that mobile internet (GPRS, 3G) will be a better option in most cases. It is still early days, and I am involved in the planning of future solutions. We hope to have a first version of a WAP or Opera Mini type solution for simple facility reporting (aggregate date) as part of the 2.5 release in October. Quite a bit more development is planned for the next 6 months, which will also touch on name based solutions (DHIS Tracker).

You should probably await these new developments, becasue they will hopefully be both more stable and flexible than the current solution. Also, before introducing any mobile solutions, it is quite important to implement a solid DHIS2 back bone, and make sure the roll out works well. So I think this should wait until after the switch to DHIS2 as the new HMIS.

Knut

thanks


Muhire Andrew

HMIS/Ministry of Health

andrew.muhire@moh.gov.rw

God is my provider.

To: Muhire Andrew muhireandrew@yahoo.com


From: Ola Hodne Titlestad olati@ifi.uio.noCc: Lars Helge Øverland larshelge@gmail.com; “dhis2-users@lists.launchpad.netdhis2-users@lists.launchpad.net; "dhis2-devs@lists.launchpad.net " dhis2-devs@lists.launchpad.net
Sent: Monday, September 12, 2011 9:58 PM
Subject: Re: [Dhis2-users] Dear Dhis2 users how can i delete?

Hi,

The only two commands you should run on your database are the two delete statements;

delete from datavalue_audit where dataelementid=;

delete from datavalue where dataelementid=;

“Replace” is not a command, just Lars telling you to change the in the two commands above with the real IDs of your data elements.

Seems all is fine then. You can now try deleting the data elements from the DHIS 2 user interface.

Ola



Ola Hodne Titlestad (Mr)
HISP
Department of Informatics
University of Oslo

Mobile: +47 48069736
Home address: Vetlandsvn. 95B, 0685 Oslo, Norway. Googlemaps link

2011/9/12 Muhire Andrew muhireandrew@yahoo.com

Thanks for the quick help,

i have successfully used the select and delete steps
(in datavalues and datavalue_audit)

but using replace is not working on my side may be am not using it well? please update me again (only replace syntax). i have deleted data from my data element x and next step was to use replace but am getting syntax error!

waiting for your help dear team!


  • Muhire Andrew*

HMIS/Ministry of Health

andrew.muhire@moh.gov.rw

God is my provider.


From: Lars Helge Øverland larshelge@gmail.com

To: Muhire Andrew muhireandrew@yahoo.com
Cc: dhis2-devs@lists.launchpad.net ; dhis2-users@lists.launchpad.net
Sent: Monday, September 12, 2011 3:51 PM
Subject: Re: Dear Dhis2 users how can i delete?

Hi Andrew,

you need to remove the data with SQL in the database. Run:

delete from datavalue_audit where dataelementid=;
delete from datavalue where dataelementid=;

and replace with the dataelementid of the one you want to remove.

You can then go ahead and delete the data element in the user interface.

Lars


Mailing list: https://launchpad.net/~dhis2-users

Post to : dhis2-users@lists.launchpad.net

Unsubscribe : https://launchpad.net/~dhis2-users

More help : https://help.launchpad.net/ListHelp


Mailing list: https://launchpad.net/~dhis2-users

Post to : dhis2-users@lists.launchpad.net

Unsubscribe : https://launchpad.net/~dhis2-users

More help : https://help.launchpad.net/ListHelp

Knut Staring

Informatics, U. of Oslo

http://hisp.uio.no

+4791880522


Mailing list: https://launchpad.net/~dhis2-devs

Post to : dhis2-devs@lists.launchpad.net

Unsubscribe : https://launchpad.net/~dhis2-devs

More help : https://help.launchpad.net/ListHelp

Great! thanks Knut for the updates.

···

Muhire Andrew

HMIS/Ministry of Health

andrew.muhire@moh.gov.rw

God is my provider.


From: Knut Staring knutst@gmail.com
To: Muhire Andrew muhireandrew@yahoo.com
Cc: Ola Hodne Titlestad olati@ifi.uio.no; “dhis2-users@lists.launchpad.netdhis2-users@lists.launchpad.net; “dhis2-devs@lists.launchpad.netdhis2-devs@lists.launchpad.net
Sent: Wednesday, September 14, 2011 8:16 PM
Subject: Re: [Dhis2-users] Dear Dhis2 users how can i delete?

On Wed, Sep 14, 2011 at 7:02 PM, Muhire Andrew muhireandrew@yahoo.com wrote:

Dear team,
In Dar es salaam workshop some of the countries were doing pilot on using Mobile reporting and Benificiary and programs features in dhis2 [how is it running in the countries that has started using it] ? Tanzania how is it? I think this will be our next step in Rwanda!

How can i link with the team that is working on mobile part?

Hi Andrew,

The existing mobile solutions are based on J2ME clients, and are already
quite useful. The field introduction has so far mostly been SMS based, but we feel that mobile internet (GPRS, 3G) will be a better option in most cases. It is still early days, and I am involved in the planning of
future solutions. We hope to have a first version of a WAP or Opera Mini type solution for simple facility reporting (aggregate date) as part of the 2.5 release in October. Quite a bit more development is planned for the next 6 months, which will also touch on name based solutions (DHIS Tracker).

You should probably await these new developments, becasue they will hopefully be both more stable and flexible than the current solution. Also, before introducing any mobile solutions, it is quite important to implement a solid DHIS2 back bone, and make sure the roll out works well. So I think this should wait until after the switch to DHIS2 as the
new HMIS.

Knut

thanks


Muhire Andrew

HMIS/Ministry of Health

andrew.muhire@moh.gov.rw

God is my provider.

To: Muhire Andrew muhireandrew@yahoo.com


From: Ola Hodne Titlestad olati@ifi.uio.noCc: Lars Helge Øverland larshelge@gmail.com; “dhis2-users@lists.launchpad.netdhis2-users@lists.launchpad.net; "dhis2-devs@lists.launchpad.net "
dhis2-devs@lists.launchpad.net
Sent: Monday, September 12, 2011 9:58 PM
Subject: Re: [Dhis2-users] Dear Dhis2 users how can i delete?

Hi,

The only two commands you should run on your database are the two delete statements;

delete from datavalue_audit where dataelementid=;

delete from datavalue where dataelementid=;

“Replace” is not a command, just Lars telling you to change the in the two commands above with the real IDs of your data elements.

Seems all is fine then. You can now try deleting the data elements from the DHIS 2 user interface.

Ola



Ola Hodne Titlestad (Mr)
HISP
Department of Informatics
University
of Oslo

Mobile: +47 48069736
Home address: Vetlandsvn. 95B, 0685 Oslo, Norway. Googlemaps
link

2011/9/12 Muhire Andrew muhireandrew@yahoo.com

Thanks for the quick help,

i have successfully used the select and delete steps
(in datavalues and datavalue_audit)

but using replace is not working on my side may be am not using it well? please update me again (only replace syntax). i have deleted data from my data element x and next
step was to use replace but am getting syntax error!

waiting for your help dear team!


  • Muhire
    Andrew*

HMIS/Ministry of Health

andrew.muhire@moh.gov.rw

God is my provider.


From: Lars Helge Øverland larshelge@gmail.com

To: Muhire Andrew muhireandrew@yahoo.com
Cc: dhis2-devs@lists.launchpad.net ;
dhis2-users@lists.launchpad.net
Sent: Monday, September 12, 2011 3:51 PM
Subject: Re: Dear Dhis2 users how can i delete?

Hi Andrew,

you need to remove the data with SQL in the database. Run:

delete from datavalue_audit where dataelementid=;
delete from datavalue where dataelementid=;

and replace with the dataelementid of the one you want to remove.

You can then go ahead and delete the data element in the user interface.

Lars


Mailing list: https://launchpad.net/~dhis2-users

Post to : dhis2-users@lists.launchpad.net

Unsubscribe : https://launchpad.net/~dhis2-users

More help : https://help.launchpad.net/ListHelp


Mailing list: https://launchpad.net/~dhis2-users

Post to : dhis2-users@lists.launchpad.net

Unsubscribe : https://launchpad.net/~dhis2-users

More help : https://help.launchpad.net/ListHelp


Knut Staring

Informatics, U. of Oslo

http://hisp.uio.no

+4791880522

Great!!

        Dear team,  thanks for your updates.I was asking my self how far is the mobile feature in DHIS2 but now its rilly interesting.
···

Muhire Andrew

HMIS/Ministry of Health

andrew.muhire@moh.gov.rw

God is my provider.


From: Jason Pickering jason.p.pickering@gmail.com
To: Muhire Andrew muhireandrew@yahoo.com
Cc: Knut Staring knutst@gmail.com; “dhis2-users@lists.launchpad.netdhis2-users@lists.launchpad.net; Ola Hodne Titlestad olati@ifi.uio.no; “dhis2-devs@lists.launchpad.netdhis2-devs@lists.launchpad.net
Sent: Wednesday, September 14, 2011 8:43 PM
Subject: Re: [Dhis2-devs] [Dhis2-users] How is it running in other countries?

Hi there. We have been using the GPRS client here in Zambia for about 6 months now. We currently have about 200+ mobiles (and growing) in the field reporting about 20 data elements (only) on a weekly basis. In general, we have had very few problems technical problems. We have worked very closely with the developers however to work out a few bugs and issues, but all in all this has been really very minor stuff.

The system is being used specifically for targeted facilities for monitoring of logistics and surveillance to support the National Malaria Control Programme. There has been significant interest from neighboring countries (Botswana, Tanzania as well as Senegal) which means that coordination among efforts is particular important as we move forward.

As Knut says, establishing a firm DHIS2 backbone is key. We opted for a cloud-based solution, which simplifies a number of issues and mitigates a number of risks. I would encourage you to consider the same approach.

Regards,

Jason

On Wed, Sep 14, 2011 at 7:30 PM, Muhire Andrew muhireandrew@yahoo.com wrote:

Dear team,
In Dar es salaam workshop, some of the countries were doing pilot on using Mobile reporting and Benificiary and programs
features in dhis2 [how is it running in the countries that has started
using it] ? Tanzania how is it? I think this will be our next step in Rwanda!
How can i link with the team that is working on mobile part?
thanks


*Muhire Andrew
*

HMIS/Ministry of Health

andrew.muhire@moh.gov.rw

God is my provider.


From: Knut Staring
knutst@gmail.com
To: Muhire Andrew muhireandrew@yahoo.com

Cc: Ola Hodne Titlestad olati@ifi.uio.no; “dhis2-users@lists.launchpad.netdhis2-users@lists.launchpad.net; “dhis2-devs@lists.launchpad.netdhis2-devs@lists.launchpad.net

Sent: Wednesday, September 14, 2011 8:16 PM
Subject: Re: [Dhis2-users] Dear Dhis2 users how can i delete?

On Wed, Sep 14, 2011 at 7:02 PM, Muhire Andrew muhireandrew@yahoo.com wrote:

Dear team,
In Dar es salaam workshop some of the countries were doing pilot on using Mobile reporting and Benificiary and programs features in dhis2 [how is it running in the countries that has started using it] ? Tanzania how is it? I think this will be our next step in Rwanda!

How can i link with the team that is working on mobile part?

Hi Andrew,

The existing mobile solutions are based on J2ME clients, and are already
quite useful. The field introduction has so far mostly been SMS based, but we feel that mobile internet (GPRS, 3G) will be a better option in most cases. It is still early days, and I am involved in the planning of
future solutions. We hope to have a first version of a WAP or Opera Mini type solution for simple facility reporting (aggregate date) as part of the 2.5 release in October. Quite a bit more development is planned for the next 6 months, which will also touch on name based solutions (DHIS Tracker).

You should probably await these new developments, becasue they will hopefully be both more stable and flexible than the current solution. Also, before introducing any mobile solutions, it is quite important to implement a solid DHIS2 back bone, and make sure the roll out works well. So I think this should wait until after the switch to DHIS2 as the
new HMIS.

Knut

thanks


Muhire Andrew

HMIS/Ministry of Health

andrew.muhire@moh.gov.rw

God is my provider.

To: Muhire Andrew muhireandrew@yahoo.com


From: Ola Hodne Titlestad olati@ifi.uio.noCc: Lars Helge Øverland larshelge@gmail.com; “dhis2-users@lists.launchpad.netdhis2-users@lists.launchpad.net; "dhis2-devs@lists.launchpad.net "
dhis2-devs@lists.launchpad.net
Sent: Monday, September 12, 2011 9:58 PM
Subject: Re: [Dhis2-users] Dear Dhis2 users how can i delete?

Hi,

The only two commands you should run on your database are the two delete statements;

delete from datavalue_audit where dataelementid=;

delete from datavalue where dataelementid=;

“Replace” is not a command, just Lars telling you to change the in the two commands above with the real IDs of your data elements.

Seems all is fine then. You can now try deleting the data elements from the DHIS 2 user interface.

Ola



Ola Hodne Titlestad (Mr)
HISP
Department of Informatics
University
of Oslo

Mobile: +47 48069736
Home address: Vetlandsvn. 95B, 0685 Oslo, Norway. Googlemaps
link

2011/9/12 Muhire Andrew muhireandrew@yahoo.com

Thanks for the quick help,

i have successfully used the select and delete steps
(in datavalues and datavalue_audit)

but using replace is not working on my side may be am not using it well? please update me again (only replace syntax). i have deleted data from my data element x and next
step was to use replace but am getting syntax error!

waiting for your help dear team!


  • Muhire
    Andrew*

HMIS/Ministry of Health

andrew.muhire@moh.gov.rw

God is my provider.


From: Lars Helge Øverland larshelge@gmail.com

To: Muhire Andrew muhireandrew@yahoo.com
Cc: dhis2-devs@lists.launchpad.net ;
dhis2-users@lists.launchpad.net
Sent: Monday, September 12, 2011 3:51 PM
Subject: Re: Dear Dhis2 users how can i delete?

Hi Andrew,

you need to remove the data with SQL in the database. Run:

delete from datavalue_audit where dataelementid=;
delete from datavalue where dataelementid=;

and replace with the dataelementid of the one you want to remove.

You can then go ahead and delete the data element in the user interface.

Lars


Mailing list: https://launchpad.net/~dhis2-users

Post to : dhis2-users@lists.launchpad.net

Unsubscribe : https://launchpad.net/~dhis2-users

More help : https://help.launchpad.net/ListHelp


Mailing list: https://launchpad.net/~dhis2-users

Post to : dhis2-users@lists.launchpad.net

Unsubscribe : https://launchpad.net/~dhis2-users

More help : https://help.launchpad.net/ListHelp

Knut Staring

Informatics, U. of Oslo

http://hisp.uio.no

+4791880522


Mailing list: https://launchpad.net/~dhis2-devs

Post to : dhis2-devs@lists.launchpad.net

Unsubscribe : https://launchpad.net/~dhis2-devs

More help : https://help.launchpad.net/ListHelp

Jason,

Is this also the mobile app used in vietnam?

Alvin

···

Sent from my BlackBerry® wireless handheld

-----Original Message-----
From: Muhire Andrew <muhireandrew@yahoo.com>
Sender: dhis2-users-bounces+alvin.marcelo=gmail.com@lists.launchpad.net
Date: Wed, 14 Sep 2011 11:09:51
To: Jason Pickering<jason.p.pickering@gmail.com>
Reply-To: Muhire Andrew <muhireandrew@yahoo.com>
Cc: dhis2-users@lists.launchpad.net<dhis2-users@lists.launchpad.net>; Ola Hodne Titlestad<olati@ifi.uio.no>; dhis2-devs@lists.launchpad.net<dhis2-devs@lists.launchpad.net>
Subject: Re: [Dhis2-users] [Dhis2-devs] How is it running in other countries?

_______________________________________________
Mailing list: DHIS 2 Users in Launchpad
Post to : dhis2-users@lists.launchpad.net
Unsubscribe : DHIS 2 Users in Launchpad
More help : ListHelp - Launchpad Help

Hi Alvin,

I am not 100% sure, but believe so. I think they are also using the
patient level tracking module there in Viet Nam. Anyone from the
Vietnamese team want to comment?

Regards,
Jason

···

On Thu, Sep 15, 2011 at 12:40 AM, <alvin.marcelo@gmail.com> wrote:

Jason,

Is this also the mobile app used in vietnam?

Alvin

Sent from my BlackBerry® wireless handheld

-----Original Message-----
From: Muhire Andrew <muhireandrew@yahoo.com>
Sender: dhis2-users-bounces+alvin.marcelo=gmail.com@lists.launchpad.net
Date: Wed, 14 Sep 2011 11:09:51
To: Jason Pickering<jason.p.pickering@gmail.com>
Reply-To: Muhire Andrew <muhireandrew@yahoo.com>
Cc: dhis2-users@lists.launchpad.net<dhis2-users@lists.launchpad.net>; Ola Hodne Titlestad<olati@ifi.uio.no>; dhis2-devs@lists.launchpad.net<dhis2-devs@lists.launchpad.net>
Subject: Re: [Dhis2-users] [Dhis2-devs] How is it running in other countries?

_______________________________________________
Mailing list: DHIS 2 Users in Launchpad
Post to : dhis2-users@lists.launchpad.net
Unsubscribe : DHIS 2 Users in Launchpad
More help : ListHelp - Launchpad Help