Beispiel #1
0
        private static SQLInformation.Data.ApplicationDataSet.ServerRolesRow Add(MSMO.ServerRole serverRole, Guid instanceID, string instanceName)
        {
            SQLInformation.Data.ApplicationDataSet.ServerRolesRow dataRow = null;

            try
            {
                dataRow = Common.ApplicationDataSet.ServerRoles.NewServerRolesRow();

                dataRow.ID = Guid.NewGuid();

                dataRow.Name_ServerRole = serverRole.Name;
                dataRow.Instance_ID     = instanceID;
                dataRow.Name_Instance   = instanceName;

                // Not until SQL 2012
                //try
                //{
                //    newServerRoleRow.CreateDate = serverRole.DateCreated;
                //}
                //catch (Exception ex)
                //{
                //    VNC.AppLog.Warning(ex, LOG_APPNAME, CLASS_BASE_ERRORNUMBER + 4);
                //}

                //try
                //{
                //    newServerRoleRow.DateLastModified = serverRole.DateModified;
                //}
                //catch (Exception ex)
                //{
                //    VNC.AppLog.Warning(ex, LOG_APPNAME, CLASS_BASE_ERRORNUMBER + 5);
                //}

                dataRow.SnapShotDate  = DateTime.Now;
                dataRow.SnapShotError = "";

                Common.ApplicationDataSet.ServerRoles.AddServerRolesRow(dataRow);
                Common.ApplicationDataSet.ServerRolesTA.Update(Common.ApplicationDataSet.ServerRoles);
            }
            catch (Exception ex)
            {
                VNC.AppLog.Error(ex, LOG_APPNAME, CLASS_BASE_ERRORNUMBER + 5);
                // TODO(crhodes):
                // Wrap anything above that throws an exception that we want to ignore,
                // e.g. property not available because of SQL Edition.

                UpdateDatabaseWithSnapShot(dataRow, ex.ToString().Substring(0, 256));
            }

            return(dataRow);
        }
Beispiel #2
0
        private static void Update(MSMO.ServerRole serverRole, SQLInformation.Data.ApplicationDataSet.ServerRolesRow dataRow)
        {
            try
            {
                serverRole.UpdateDataSet(dataRow);

                UpdateDatabaseWithSnapShot(dataRow, "");
            }
            catch (Exception ex)
            {
                VNC.AppLog.Error(ex, LOG_APPNAME, CLASS_BASE_ERRORNUMBER + 6);

                UpdateDatabaseWithSnapShot(dataRow, ex.ToString().Substring(0, 256));
            }
        }
Beispiel #3
0
        private static SQLInformation.Data.ApplicationDataSet.ServerRolesRow GetInfoFromSMO(MSMO.ServerRole serverRole, Guid instanceID, string instanceName)
        {
#if TRACE
            long startTicks = VNC.AppLog.Trace4("Enter", LOG_APPNAME, CLASS_BASE_ERRORNUMBER + 2);
#endif
            SQLInformation.Data.ApplicationDataSet.ServerRolesRow dataRow = null;

            try
            {
                var dbs = from sr in Common.ApplicationDataSet.ServerRoles
                          where sr.Instance_ID == instanceID
                          select sr;

                var dbs2 = from db2 in dbs
                           where db2.Name_ServerRole == serverRole.Name
                           select db2;

                if (dbs2.Count() > 0)
                {
                    dataRow = dbs2.First();
                    Update(serverRole, dataRow);
                }
                else
                {
                    dataRow = Add(serverRole, instanceID, instanceName);
                }
            }
            catch (Exception ex)
            {
                VNC.AppLog.Error(ex, LOG_APPNAME, CLASS_BASE_ERRORNUMBER + 3);
            }
#if TRACE
            VNC.AppLog.Trace4("Exit", LOG_APPNAME, CLASS_BASE_ERRORNUMBER + 4, startTicks);
#endif
            return(dataRow);
        }