/// <summary> Refresh the list of aggregation/collection aliases by pulling the data back from the database </summary>
        /// <returns> TRUE if successful, otherwise FALSE </returns>
        public static bool RefreshCollectionAliases()
        {
            try
            {
                lock (collectionAliasesLock)
                {
                    if (collectionAliases == null)
                    {
                        collectionAliases = new Dictionary <string, string>();
                    }

                    Engine_Database.Populate_Aggregation_Aliases(collectionAliases, null);
                }

                return(true);
            }
            catch
            {
                return(false);
            }
        }