Archive for the 'Databases' Category

New features in Quintify’s core products

Client Focus, Databases No Comments »

In addition to some behind-the-scenes programming development and improvement of our internal systems, here are some exciting new features that we at Quintify have rolled out recently into all of our core products:

Global search now looks inside of uploaded PDF files and Microsoft Office documents and includes their contents in search results.

I’m not sure if I’ve mentioned global search in this blog, but this cool feature allows you to search across all of the “things” in your system in one search box and one set of search results ordered by relevancy. This way you can search client records, notes, orders, products, jots, projects, tasks, and so on from a single search Global Search bar in a Quintify databasebox. (Compared to our “filters” search capability that allows you to drill down with precision, this global search capability allows you to cast a wide net. Both complement each other very well.)

Filters search box in a Quintify database

Now, these search results include the contents of the PDF files and MS Office documents you’ve uploaded into your system. I played around with this by creating a one-sentence MS Word document that said “how now brown cow”. Then I uploaded that into our database system and did a global search for “brown cow” and my Word document showed up in the search results. Nice!

Improved lead/client import via a spreadsheet upload

In the past our system was “picky” about the spreadsheets that could be uploaded into them to import data — in particular the columns in the spreadsheet had to be in a certain order, and if you weren’t including information for one of the fields in the database you had to include that column but leave it blank. And you could only include information for a particular set of fields/columns. (Sorry about that!)

Now, the lead/client upload page does not require your spreadsheet’s columns to be in any particular order, and you can also add addition columns  of information that can be added in as client notes.

“Quick jump” links on the “List Clients” and “List Documents” pages that allow you to quickly pull up the status or category that you want.

A client with many different kinds of many documents in their system asked for a quick way to filter to a particular category of documents, e.g. “forms” or “blank contracts”. We had wanted similar functionality for our own system and went ahead and included it in all of our core products as well.

quick jump category list in a Quintify database

This is particularly helpful on the “List Clients” page, because with it you can immediately jump to your list of “Suspects”, “Prospects”, “Shoppers”, “Customers”, etc. — or whatever set of client statuses you have set up in your system.

Enjoy!

Introducing Quintify::Answers

Business Development, Databases No Comments »

As a computer programmer, I’m a big fan of Stack Overflow — both the website and the podcast, and I was thrilled when Stack Exchange came out so that anyone can have their own Stack-Overflow-like website on their topic of choice. Today I took the time to set up Quintify’s Stack Exchange website.

Quintify::Answers — found at http://answers.quintify.com — provides a forum for Quintify customers and prospects to ask and answer questions about using their Quintify databases. We anticipate a Quintify user community growing around this over time, and Quintify team members will monitor it to provide regular how-to info for those asking questions.

Right now there is only one question on the site — asked and answered by me — but eventually the site will be a large knowledge base easily accessible by all Quintify database users.

Quintify Launches Industry-Specific Database Solutions!

Business Development, Client Focus, Databases 1 Comment »

We have some exciting news to share with you!  Quintify recently launched several industry-specific database solutions designed to provide small business owners the tools they need to run and grow their business.  The web-based databases, which are geared towards business coaches, virtual assistants, web developers and small and medium sized businesses, include the following features:

• Customer relationship management (CRM)
• Project / task management
• Quotes, orders and invoicing
• Services and products
• Email marketing
• Time management and time clocks
• Client portal
• Robust reporting
• And much more!

Each database product is offered for a low monthly fee of $55 per month.  There is no contract to sign, no long-term commitment, and no hidden fees.  Additionally, there are no limits to the number of users who can access the system or the number of records that can be stored. 

To learn more about the products or to sign up for a FREE 30-day trial, please visit the websites below.

Quintify::Complete - an ideal solution for small and medium sized businesses
 
Quintify::Business Coach - perfect for business coaches who need to keep in touch quickly and easily with their clients
 
Quintify::Virtual Assistant - great for virtual assistants who need to keep track of their tasks, perform invoicing or other administrative tasks
 
Quintify::Web Developer - amazing tool for those who design and develop great websites

If you know someone who might benefit from one of our products, please feel free to link to this blog entry!

PS:  Know someone who is looking to start up a business for a very low cost?  Visit http://www.mytowndeals.biz for more information on an excellent home-based business opportunity for budding entrepreneurs!

speaking at the Wilmington Area Professionals IT Breakfast on Thursday — on Cloud Computing

Databases, This and That No Comments »

On Thursday (11/12) UNCW will be hosting the Wilmington Area Professionals IT Breakfast in the Madeleine Suite from 7:30 AM - 9:15 AM. The topic will be the “Impact/Future of Cloud Computing.”

I’m going to be one of the speakers, and will spend the majority of my time discussing things we and others are doing with Amazon’s Web Services for cloud computing. This is a fascinating topic for me and I’m particularly excited about Amazon’s Relational Database Service (RDS).

Traction — Get a Grip on Your Business

Business Development, Databases No Comments »

I’ve stayed up late tonight reading “Traction: Get a Grip on Your Business” by Gino Wockman. It’s awesome, and I’m very excited about implementing it in Quintify.

For a while now I’ve wanted us to build in a “business development” module into our Quintify business database software to go along with the CRM, project/task management, order fulfillment, invoicing/AR, marketing, CMS, etc. that we already include. I’m going to build Traction’s model into our own database system, and if it goes as well as I think it will, I’m going to talk to Gino’s company about us having a Traction-branded version of Quintify::Complete. (One nice thing about our code generator is that such stuff can get implemented pretty quickly. I’d also like to create an ActionCOACH-branded version using their business development model.)

I’ve heard the things in Traction before — from Michael Gerber, Reggie Shropshire, and others. But Traction really explains things in an easy-to-understand-and-implement way. Or perhaps I’ve been exposed to the concepts enough that they are finally taking root.

Some Best Practices in Data Modeling for Web Application Development

Databases No Comments »

(I’m speaking at an undergraduate database class today at UNCW and needed a place to stick some supplemental notes, and thought I’d put them here.)

Some best practices in data modeling for web application development, particularly for “backend” business systems:

1. Initially focus on database tables, fields and relationships and not what the web pages are going to look like. If the data model is right, the user interface will (pretty much) take care of itself.

2. For all major “things” in your system, have a table for notes: product_note, client_note, quote_note, task_note, etc. (And encourage users to add notes.)

3. For each database table, have the following fields:

  • date added
  • date last modified
  • last modified by

4. At the application level, have edit locks to prevent two users from trying to edit the same record at the same time, with the one submitting the form last overwriting the one who submitted it first. (At the data model level, in addition to the three recommend fields above, also have “date last locked” and “last locked by”.)

5. Think through (and discuss with your client) one-to-many vs. many-to-many relationships. For example, when setting up a database for a school, does each class have one and only one teacher or can a class have multiple teachers? When discussing this with a client, ask them if the relationship in question needs a select list (one-to-many) or checkboxes (many-to-many) in the web form. In our example, some schools will be one-to-many but others will be many-to-many. Getting this right from the start will save headaches down the road.

6. Log user access — both system access (logins) and page access (page views and actions). You probably won’t often need to know who accessed what page when and from where, but when you do, having that info in the database is golden.

7. Be careful about losing historical information. For example, if you have a product table that contains “unit_cost”, you might be tempted to not include “unit_cost” in your order_line database table, since that info is already available in the product table and “don’t duplicate info” is a value. However, over time the products’ costs are likely to change, and at that point you won’t know what the cost was for a product ordered last year unless you captured that info in the order_line database table. The solution is to have the “unit_cost” in the order_line table.

8. When setting up the data model for user access, seriously consider having users and usergroups be “many to many”, so that user access to particular parts of the system is “nonlinear”. I’ve seen others’ systems where each user could be given basic access, or intermediate access, or admin access, and I’ve heard about a system where one’s access rights were a scale from 1 to 100, with someone at a 70 getting everything below that, and someone at an 80 getting everything below that. It’s much better to have multiple usergroups (e.g. customer service, accounting, marketing, etc.) and then allow users to be in multiple usergroups based on their roles within the organization, which each usergroup having its own set of access permissions.

9. I name all of my “join table” tables with a “j” at the front, e.g. jstudent_class and jemployee_usergroup. This is really helpful for quickly knowing what relationship type the table encompasses.

10. Sometimes calculated fields are OK. For some reason at one point in my life I was under the impression that calculated fields in database tables were evil, but there are times when they are very helpful, particularly depending upon the framework you are using. With wm, we can set a flag for a field being a calculation, so that it doesn’t show up in the add/edit form, but it does show up in the display and the search filters. The only catch is that we need to add the code for the calculation, but we have things in place to handle that.

———–

Any comments, or any more you’d like to add?

Feature of the Week: Quickly Add Clients to Segments

Databases No Comments »

Our feature of the week is something I know everyone will find useful.  Say you’d like to quickly create a segment - adding all clients located in the state of California.  You’ll be using this segment to send out a targeted email blast to those clients, perhaps with a special offer.  The feature of the week will show you how easy it is to do this - takes less than two minutes! 

 

free “databases for small businesses” seminar at CFCC

Business Development, Databases No Comments »

Information release from Kim LeClair of CFCC’s Small Business Center (Wilmington, NC):

————————–

Database Development for Your Small Business

September 10th from 6-8 p.m. / Room L-107

FREE SEMINAR

I am pleased to announce this NEW seminar that will help many businesses run more efficiently. Below is a course outline of what will be covered. Mr. Reid Wilson, from Quintify Database Solutions, will be presenting this seminar.

Course Outline: Are you currently storing all your clients in an Excel spreadsheet? Are you sticking with a legacy system that no longer meets your needs? Many small businesses are using outdated means to store their contacts, do process management, and provide actionable reporting. As part of this seminar, we will show you the 8 key benefits of having a great database:

  • Reduce complexity
  • All key info is in one place only
  • Productivity gains
  • You can scale
  • Knowledge to make decisions
  • Easy customer contact
  • Gives the business owner peace of mind
  • Immediate ROI plus builds long-term financial value

I am attaching a registration form for those that are interested in attending. If you have any questions, you can reach me directly at 362-7216. Have a wonderful day.

Kim LeClair

SBC, Cape Fear Community College

5 “Database” Mistakes Small Businesses Make

Business Development, Databases No Comments »

Here are five “database” mistakes small businesses make. Each of these can significantly limit growth, particularly when a team is involved.

1. Trying to use MS Excel to do things it wasn’t intended to do
2. Using file folders to keep track of their information
3. Using sticky notes and random pieces of paper to keep track of their information
4. Trying to keep everything in one’s head
5. Sticking with a legacy system that no longer meets their needs

These will be fleshed out in future blog posts.

first draft of Quintify’s manifesto

Business Development, Databases, Mass Prosperity No Comments »

Quintify Database Solutions creates custom databases for small- and medium-sized businesses.  Our web databases are used to run entire companies — CRM, marketing and sales, project/task management, order fulfillment, invoicing and payments, HR, time clock, and more. Our clients love having one system for everything instead of having to log into different systems for different functions, systems that don’t “talk to” each other.

In particular, we offer standard turn-key web database products that can then be customized to exactly meet our customers’ needs. In addition to our primary product, Quintify::Complete, we are also developing products for multiple niches, starting with business coaches.

The Value We Offer

Way too many small businesses encounter significant inefficiency and ineffectiveness due to lack of a proper information system. They try to keep things in MS Excel, or sticky notes, or file folders, or simply in their heads, and in so doing information and things-to-do fall through the cracks, and communication with their customers is problematic enough that they just don’t do it. Even those who realize they need a database shrink back from their own ignorance of such things or their fear that a proper database for their company would cost much, much more than they can afford.

Quintify’s primary product provides incredible database functionality to its customers for the cost of $55/month. Then, for those customers desiring customization, for an additional fee we can enhance their system to do whatever they’d like it to do.

For our “mass niche” products, we will provide (for example) business coaches a system that has been “pre-customized” based on best practices from close input from other business coaches. Then, again, these systems can be further customized according to each customer’s desires.

Our databases have already revolutionized organizations, and as we roll out to the masses, I believe we can revolutionize small business itself.

On Being Entrepreneurial

Quintify is committed to creating innovative new products and services to small- and medium-sized businesses in Wilmington and beyond.  By providing a low-cost solution with an incredible amount of functionality built-in, and then allowing customers to request enhancements in whatever ways they can imagine, we can offer phenomenal value at a cost structure that provides us a nice profit as well.

Our databases are web-based and have a sophisticated role-based permissions system built in, which will allow our customers to connect with their vendors, team members, and customers in new ways by allowing their partners to have log-in access to their systems, with them only being able to see what our customer wants them to be able to see and to be able to do only what our customer wants them to do. As the world becomes ever more connected through the power of the internet, our customers’ Quintify databases will be there to enable them to make the most of this.

Our Competitive Advantage

Our “secret sauce” provides us a significant competitive advantage.

Over the past several years I have built a “code generator”, a “program that writes programs”, that we call “wm”. Instead of creating a new database system from scratch, or even starting with something done in the past and having to rework it to meet new specs, we instead describe the database application in a set of config files. For example, a system’s “customer” config file tells what fields are used to describe a customer along with various behaviors for those fields, what other tables are linked to customers, any startup values that are needed, etc. Once all of the config files are ready, wm then uses those config files to build the entire system. Config files are reusable from one project/database instance to another, and many customization requests can be fulfilled by simply modifying the config file and then regenerating the code for that “thing”.

While I started working on code generation years ago to abstract out the repetitive aspects of web development, the main guts of wm were created during a massive project in which I did all of the programming migrating a 25-year-old, multi-million-dollar company off of its complete legacy system to a web-based one. (They subsequently entered their golden age.)  There is a lot of blood, sweat, and tears in wm in addition to the functionality that allows us to offer fully customizable, feature-rich, inexpensive products that should thrive even more during economic downturns due to the efficiency and effectiveness we increase.

wm has been used to create many different kinds of databases and is an incredibly flexible platform to build on. In a nutshell, Quintify exists to use the power of wm to revolutionize small businesses everywhere.