Search found 82 matches

by pbumc
Fri Jun 05, 2026 9:02 pm
Forum: General Questions and Discussion
Topic: Restore an Indivdual from a backup or copy from another DB?
Replies: 6
Views: 132

Re: Restore an Indivdual from a backup or copy from another DB?

Okay I think this is fixed. Before starting, I reassigned the Envelope Number (for which the financial secretary had re-added contributions) to number 9901, and added "DO NOT USE" to the new family and profile he created. I remembered that DBF files don't actually delete records until you pack the d...
by pbumc
Fri Jun 05, 2026 2:35 pm
Forum: General Questions and Discussion
Topic: Restore an Indivdual from a backup or copy from another DB?
Replies: 6
Views: 132

Re: Restore an Indivdual from a backup or copy from another DB?

Now that I've restored a backup to a temporary location, I thought I'd correct my previous statement now that I see what actually happened. The two household members did in fact have different envelope numbers, so a statement was generated for each. The issue was that when the second profile was mov...
by pbumc
Wed Jun 03, 2026 10:34 pm
Forum: General Questions and Discussion
Topic: Restore an Indivdual from a backup or copy from another DB?
Replies: 6
Views: 132

Re: Restore an Indivdual from a backup or copy from another DB?

Great, thanks Neil. I've removed Delete profile and family from all users.
by pbumc
Wed Jun 03, 2026 8:01 pm
Forum: General Questions and Discussion
Topic: Restore an Indivdual from a backup or copy from another DB?
Replies: 6
Views: 132

Re: Restore an Indivdual from a backup or copy from another DB?

Zorak, Thanks for your prompt and detailed reply. Point taken about Delete privileges. And you're right, "accidental" was the wrong word. The issue was that a member contacted our financial secretary asking for a contribution statement separate from her spouse. I thought the finsec knew about just a...
by pbumc
Wed Jun 03, 2026 12:51 am
Forum: General Questions and Discussion
Topic: Restore an Indivdual from a backup or copy from another DB?
Replies: 6
Views: 132

Restore an Indivdual from a backup or copy from another DB?

Hi, We're using PCPlus 15. A volunteer accidentally deleted an individual from a family, not realizing this wiped out not only her donation history but also 2+ years of attendance history. Unfortunately, too much time has passed to restore the entire database. I assume I can restore a backup to a te...
by pbumc
Fri Jan 29, 2021 1:21 pm
Forum: General Questions and Discussion
Topic: Conditional, global search and replace?
Replies: 19
Views: 90386

Re: Conditional, global search and replace?

In case anyone is following this thread: I realized that the SELECTs were including profiles whose attendance was expected (active in the 1002 activity) whether they were Present or not. I updated the three scripts to add "and atdata.status = 'P'", which confirms that the person was Present at the a...
by pbumc
Fri Jan 29, 2021 11:38 am
Forum: Membership
Topic: How to categorize non-church contacts?
Replies: 4
Views: 11571

Re: How to categorize non-church contacts?

Yeah .. you really don't need to have a personal profile in these cases at all. I suspect that you've been using the "Add Family Assistant" to enter these exceptions as it will create the personal profiles records. What you should do to add these types of records is UNCHECK the use add family assis...
by pbumc
Thu Jan 28, 2021 12:04 pm
Forum: Membership
Topic: How to categorize non-church contacts?
Replies: 4
Views: 11571

Re: How to categorize non-church contacts?

Thanks Neil. Any reason to keep Personal Profile records at all when there is no contribution history to maintain and no people to track? Say if they want a way to keep the phone number and address of restaurants, appliance repair shops, etc. It looks like it is possible to delete the last Personal ...
by pbumc
Wed Jan 27, 2021 2:16 pm
Forum: Membership
Topic: How to categorize non-church contacts?
Replies: 4
Views: 11571

How to categorize non-church contacts?

Our church uses PowerChurch 11.55 to track members and donations, but not for full accounting. I'm working on cleaning up records created over the years with no Personal Status. I'm seeing that many are not related to church members or visitors: Facilities users, bake sale (fees/proceeds tracked as ...
by pbumc
Wed Aug 26, 2020 12:40 pm
Forum: Membership
Topic: Membership audit log, required fields
Replies: 2
Views: 4858

Re: Membership audit log, required fields

Neil, thanks for the suggestions. You can setup in the Family Mailing list preferences, a default mailing category, and you can do the same with the personal profiles under preferences. I always feel that its a training issue; anyone who has permission to add to the membership database should know h...
by pbumc
Tue Aug 25, 2020 7:23 pm
Forum: Membership
Topic: Membership audit log, required fields
Replies: 2
Views: 4858

Membership audit log, required fields

Hi, We're working on cleaning up PowerChurch data. With multiple people working in the database over the years, and not all of them highly skilled at data management, it's quite a mess. Our big push has been to deactivate people who are no longer involved, which we mostly do with the Personal Profil...
by pbumc
Wed Aug 12, 2020 11:20 pm
Forum: General Questions and Discussion
Topic: database changes report or audit log?
Replies: 4
Views: 5328

Re: database changes report or audit log?

Thanks, I'll look into v. 12!
by pbumc
Wed Aug 12, 2020 5:47 pm
Forum: General Questions and Discussion
Topic: database changes report or audit log?
Replies: 4
Views: 5328

Re: database changes report or audit log?

Eleven years later, I'm looking for the same feature in PC 11.55. Or at a minimum, an indication of Last Update By and Last Update At (timestamp) for the Family and Personal records. I'd make these fields visible on all tabs but not editable, probably left justified in the bottom margin, at the same...
by pbumc
Wed Jun 03, 2020 1:09 pm
Forum: General Questions and Discussion
Topic: Conditional, global search and replace?
Replies: 19
Views: 90386

Re: Conditional, global search and replace?

I do like a challenge :). Looks like GETENV will do it.

Code: Select all

COPY TO GETENV("USERPROFILE") + "\DESKTOP\TEMP.XLS" TYPE XL5
by pbumc
Wed Jun 03, 2020 12:27 pm
Forum: General Questions and Discussion
Topic: Conditional, global search and replace?
Replies: 19
Views: 90386

Re: Conditional, global search and replace?

Ah, of course. On the computer where I got the error, the name of the user's folder includes the domain name. I just tried

Code: Select all

COPY TO "%USERPROFILE%\DESKTOP\TEMP.XLS" TYPE XL5
but that gives the same error--maybe FoxPro won't expand environment variables?

Hard-coding the full path works.