Forum Replies Created

Viewing 15 posts - 136 through 150 (of 1,079 total)

  • RE: Compressed Backups- SQL Server 2008 32 bit to SQL Server 2014 64 bit

    You shouldn't have issues, just keep in mind, the databases will be upgraded during restore on 2014, so keep the 2008 backups until your migration is signed off as successful. 

    -----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
    This thing is addressing problems that dont exist. Its solution-ism at its worst. We are dumbing down machines that are inherently superior. - Gilfoyle

  • RE: Automate exporting data from a table to Excel or CSV


    exec msdb.dbo.sp_send_dbmail
    @profile_name = 'DBAEmailProfile',
    @recipients = 'DBA@mail.com',
    @subject = 'MonthlyReportData',
    @body_format='HTML',
    @query_result_header=1,
    @execute_query_database='productsDB',
    @query =
    'SELECT productid, price FROM dbo.product'
    @query_result_separator=' ',
    @attach_query_result_as_file = 0,...

    -----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
    This thing is addressing problems that dont exist. Its solution-ism at its worst. We are dumbing down machines that are inherently superior. - Gilfoyle

  • RE: Availability Groups - strange behavior

    Beatrix Kiddo - Thursday, March 16, 2017 8:35 AM

    Sorry, I meant to say "have you recreated your endpoints", not checked. I saw you'd...

    -----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
    This thing is addressing problems that dont exist. Its solution-ism at its worst. We are dumbing down machines that are inherently superior. - Gilfoyle

  • RE: Security warning popup from Windows

    Turn off UAC

    -----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
    This thing is addressing problems that dont exist. Its solution-ism at its worst. We are dumbing down machines that are inherently superior. - Gilfoyle

  • RE: Availability Groups - strange behavior

    Fail on individual basis. 
    Yes, all endpoints double checked.

    -----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
    This thing is addressing problems that dont exist. Its solution-ism at its worst. We are dumbing down machines that are inherently superior. - Gilfoyle

  • RE: How to get descending order of concatenated field values

    Please post DDL and sample data. 
    From what you posted, your input field is date type, but once you concatenate it, will lose date for the entire string.

    -----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
    This thing is addressing problems that dont exist. Its solution-ism at its worst. We are dumbing down machines that are inherently superior. - Gilfoyle

  • RE: Build an architecture for highly confidential project

    Also review best practices: 
    http://download.microsoft.com/download/8/F/A/8FABACD7-803E-40FC-ADF8-355E7D218F4C/SQL_Server_2012_Security_Best_Practice_Whitepaper_Apr2012.docx

    -----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
    This thing is addressing problems that dont exist. Its solution-ism at its worst. We are dumbing down machines that are inherently superior. - Gilfoyle

  • RE: Availability Groups Removed & Readded Database Problem :exclamation:

    Brandie Tarvin - Monday, March 13, 2017 12:02 PM

    Henrico Bekker - Monday, March 13, 2017 11:52 AM

    -----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
    This thing is addressing problems that dont exist. Its solution-ism at its worst. We are dumbing down machines that are inherently superior. - Gilfoyle

  • RE: Availability Groups Removed & Readded Database Problem :exclamation:

    Sounds strange.
    Test one server by deleting the secondary and populating it from the Primary maybe?

    -----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
    This thing is addressing problems that dont exist. Its solution-ism at its worst. We are dumbing down machines that are inherently superior. - Gilfoyle

  • RE: Unrecognized SQL Database error

    Slight incomplete error information, but check if you have access to the folder and files to begin with.
    Just because you can browse to the folder where the MDF and...

    -----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
    This thing is addressing problems that dont exist. Its solution-ism at its worst. We are dumbing down machines that are inherently superior. - Gilfoyle

  • RE: AlwaysOn AG - Resolving issue

    What is happening in your Windows cluster and quorum when you perform the shutdown?

    -----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
    This thing is addressing problems that dont exist. Its solution-ism at its worst. We are dumbing down machines that are inherently superior. - Gilfoyle

  • RE: Issue with Invalid column name

    You are not inserting EmpRecordNum nor EmpReferenceNum nor EmpStatus into #TEMP, so it is not available for insert into #temp2 (t2), which makes it unavailable for your comparison.

    -----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
    This thing is addressing problems that dont exist. Its solution-ism at its worst. We are dumbing down machines that are inherently superior. - Gilfoyle

  • RE: File Share Witness in Multiple Clusters

    I am sure you can, however I would create a folder for each cluster and separate the actual FSW paths from each other.
    Since it's only a file share, the...

    -----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
    This thing is addressing problems that dont exist. Its solution-ism at its worst. We are dumbing down machines that are inherently superior. - Gilfoyle

  • RE: How to use the REPLACE statement efficiently?

    You'll need to update your column values.

    UPDATE Inventory_TagAlongs
    set TagAlong_ItemNum = 'CRV- Under 24oz'
    where TagAlong_ItemNum IN ('FS CRV- Under 24ozNT','FS CRV- Under 24oz')

    Important....

    -----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
    This thing is addressing problems that dont exist. Its solution-ism at its worst. We are dumbing down machines that are inherently superior. - Gilfoyle

  • RE: Cannot perform an aggregate function

    Post DDL statement and sample data insert statements to ensure get responses.

    -----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
    This thing is addressing problems that dont exist. Its solution-ism at its worst. We are dumbing down machines that are inherently superior. - Gilfoyle

  • Viewing 15 posts - 136 through 150 (of 1,079 total)