Forum Replies Created

Viewing 15 posts - 31 through 45 (of 53 total)

  • RE: LogShipping and Differential backups

    Reply to: Lynn Pettis

    Well to respond, I am trying to do incremental backups to save on backup space but also have log shipping to a secondary site just incase the...


    Over 12yrs in IT and 10yrs happily stuck with SQL.
    - SQL 2008/R2/2012/2014/2016/2017
    - Oracle 8/9/10/11
    - MySQL 4/5 and MariaDB

  • RE: Issue:Mirroring Sync in Asynchronous Mode

    If you switched to high safety mode, does it still occur?

    I know high speed mode is nice but there could be a network issue that is causing the disconnect.


    Over 12yrs in IT and 10yrs happily stuck with SQL.
    - SQL 2008/R2/2012/2014/2016/2017
    - Oracle 8/9/10/11
    - MySQL 4/5 and MariaDB

  • RE: Configuring Service Account Privileges for SQL Server

    Great Article, I didn't know about the traceflag for standard edition.


    Over 12yrs in IT and 10yrs happily stuck with SQL.
    - SQL 2008/R2/2012/2014/2016/2017
    - Oracle 8/9/10/11
    - MySQL 4/5 and MariaDB

  • RE: UCP Error Message 37007 An error occurred during upload to the SQL Server utility control point.

    @SQLKnowItAll Thanks for the information, I have it setup using the SQL Service AD account... figured it would have the most access; alias it didn't have enough and the error...


    Over 12yrs in IT and 10yrs happily stuck with SQL.
    - SQL 2008/R2/2012/2014/2016/2017
    - Oracle 8/9/10/11
    - MySQL 4/5 and MariaDB

  • RE: JSON.SQL: A CLR-resident JSON serializer/deserializer for SQL Server

    Hey Bret,

    In my experience with .Net CLR programming I have found using CLR SP/Functions to be very useful but with that being said I have also stuck to a...


    Over 12yrs in IT and 10yrs happily stuck with SQL.
    - SQL 2008/R2/2012/2014/2016/2017
    - Oracle 8/9/10/11
    - MySQL 4/5 and MariaDB

  • RE: Introduction to Common Table Expressions

    I agree on readability, which is very important for maintaining code for developers.

    One item I have found is that in certain situations referencing a CTE over and over again some...


    Over 12yrs in IT and 10yrs happily stuck with SQL.
    - SQL 2008/R2/2012/2014/2016/2017
    - Oracle 8/9/10/11
    - MySQL 4/5 and MariaDB

  • RE: Introduction to Common Table Expressions

    Actually the CTE uses the table indexes quite nicely, just review the query plan and you will see it pulls the indexes from the table. (Most of the time) 😀

    I...


    Over 12yrs in IT and 10yrs happily stuck with SQL.
    - SQL 2008/R2/2012/2014/2016/2017
    - Oracle 8/9/10/11
    - MySQL 4/5 and MariaDB

  • RE: Memory Management

    I dunno about this answer, as http://www.microsoft.com/windowsserver2003/64bit/x64/datacenter.mspx has all of the points in your question and states 32 processors. Could the documentation be incorrect?

    I don't like being wrong but...


    Over 12yrs in IT and 10yrs happily stuck with SQL.
    - SQL 2008/R2/2012/2014/2016/2017
    - Oracle 8/9/10/11
    - MySQL 4/5 and MariaDB

  • RE: Index Management

    I forgot to mention that the article is quite informative and I think with a little tuning I can run this with confidence.


    Over 12yrs in IT and 10yrs happily stuck with SQL.
    - SQL 2008/R2/2012/2014/2016/2017
    - Oracle 8/9/10/11
    - MySQL 4/5 and MariaDB

  • RE: Index Management

    The fixed code... I am not sure if it runs but I can create all the objects.

    create table tblIndexUsageInfo

    (

    Sno int identity(1, 1)

    ,Dbname varchar(100)

    ,TableName varchar(100)

    ,IndexName varchar(300)

    ,Index_id int

    ,ConstraintType varchar(25)

    ,Type_desc varchar(100)

    ,IndexKeyColumn...


    Over 12yrs in IT and 10yrs happily stuck with SQL.
    - SQL 2008/R2/2012/2014/2016/2017
    - Oracle 8/9/10/11
    - MySQL 4/5 and MariaDB

  • RE: Concatenating Rows

    To break apart a concatenated string, please review http://beyondrelational.com/blogs/jacob/archive/2008/08/14/xquery-lab-19-how-to-parse-a-delimited-string.aspx; Jacob's articles have helped me out so much.


    Over 12yrs in IT and 10yrs happily stuck with SQL.
    - SQL 2008/R2/2012/2014/2016/2017
    - Oracle 8/9/10/11
    - MySQL 4/5 and MariaDB

  • RE: Concatenating Rows

    I've been using Solution 2, "FOR XML PATH" for a while now. I use substring to remove the first separator, I think I will look into using stuff.

    I have...


    Over 12yrs in IT and 10yrs happily stuck with SQL.
    - SQL 2008/R2/2012/2014/2016/2017
    - Oracle 8/9/10/11
    - MySQL 4/5 and MariaDB

  • RE: Parallel Processing

    Well I have learned something new today, I think I can go home now. 😀

    Thanks for the information.


    Over 12yrs in IT and 10yrs happily stuck with SQL.
    - SQL 2008/R2/2012/2014/2016/2017
    - Oracle 8/9/10/11
    - MySQL 4/5 and MariaDB

  • RE: Parallel Processing

    I get everything in your post... but what does the colon do?

    -- Clear the temp table ...

    ProcessNextServer:

    DELETE #DRT_Update


    Over 12yrs in IT and 10yrs happily stuck with SQL.
    - SQL 2008/R2/2012/2014/2016/2017
    - Oracle 8/9/10/11
    - MySQL 4/5 and MariaDB

  • RE: FILESTREAM Setup and Testing without Visual Studio

    Great post, I was wondering how to setup FILESTREAM without the need of Visual Studio.

    One item I wasn't sure of was how is the file system security handled, since...


    Over 12yrs in IT and 10yrs happily stuck with SQL.
    - SQL 2008/R2/2012/2014/2016/2017
    - Oracle 8/9/10/11
    - MySQL 4/5 and MariaDB

Viewing 15 posts - 31 through 45 (of 53 total)