Forum Replies Created

Viewing 15 posts - 4,051 through 4,065 (of 8,753 total)

  • RE: Understanding SQL Joins

    Sweetbee870 (1/8/2016)


    I Need some help! I'm New and learning SQL I have the basics of SQL down but I need some help with Joins more specifically Inner Joins with linking...

  • RE: CXPACKET very high (average 55 %)

    river1 (1/8/2016)


    Hi

    CXPACKET11143860.7210627025.50516835.2297746866455.110.01140.01090.0005

    the values for CXPACKET are very high.

    We had the parallelism in 6, then we changed to 1. No good still

    Any idea ?

    Thanks

    Piling on, with this little information there is...

  • RE: Are the posted questions getting worse?

    SQLRNNR (1/9/2016)


    Steve Jones - SSC Editor (1/8/2016)


    Third place: http://db-engines.com/en/ranking

    A little salt lick with that.

    There are several million wordpress blogs that use mysql in that figure. I wonder how many of...

  • RE: Assign a TCP/IP port to a SQL Server Database Engine (named instance)

    bobba (1/8/2016)


    ...have "::1" or "fe80::5efe..."

    Those are IP6 addresses, probably better to disable IP6 if it is not being used.

    😎

  • RE: SSAS ASLB: Monitoring Techniques

    Here is an excellent article on the subject by Pinal Dave.[/url]

    😎

  • RE: SSAS ASLB: Monitoring Techniques

    srinivas.akyana (1/9/2016)


    Hello,

    We have ASLB installed with 3 servers for load balancing, there are times we observe that one of the servers are causing in slow in performance. It was more...

  • RE: get all dates between 2 dates 7 days apart

    Jeff Moden (1/9/2016)


    Eirikur Eiriksson (1/9/2016)


    If the logic can be encapsulated in the actual date table and it is used more than once then a physical date table is almost always...

  • RE: Joining 2 Tables with Or condition

    Quick suggestion, unpivot the second table and join the results to the first table.

    😎

    create table #test_table_2

    (EmailAddress varchar(100),Email1 varchar(100),Email2 varchar(100))

    INSERT INTO #test_table_1

    SELECT 'c@b.com' as EmailAddress, 'Jack' as FirstName, 'Quick' as...

  • RE: Adios, IE

    IE or Internet Exploiter as it's been known in the security community for years has given so much problems that it in hard start to fathom that problem. The death...

  • RE: get all dates between 2 dates 7 days apart

    Hugo Kornelis (1/9/2016)


    Eirikur Eiriksson (1/9/2016)


    You are very welcome and thanks for the feedback.

    😎

    As demonstrated here, often in-line date tables are easier solutions than physical date tables, especially if they are...

  • RE: get all dates between 2 dates 7 days apart

    You are very welcome and thanks for the feedback.

    😎

    As demonstrated here, often in-line date tables are easier solutions than physical date tables, especially if they are supporting logic rather than...

  • RE: get all dates between 2 dates 7 days apart

    Quick solution

    😎

    USE tempdb;

    GO

    SET NOCOUNT ON;

    DECLARE @START_DATE DATE = CONVERT(DATE,'20100101',112);

    DECLARE @END_DATE DATE = CONVERT(DATE,'20100901',112);

    DECLARE @INTERVAL INT = 14;

    ;WITH T(N) AS (SELECT N FROM (VALUES (0),(0),(0),(0),(0),(0),(0),(0),(0),(0)) AS...

  • RE: How to rewrite query to be set based

    MyDoggieJessie (1/8/2016)


    Thanks a lot for this, had to create an index on the larger table been hit but it does work well!

    You are very welcome.

    😎

  • RE: Are the posted questions getting worse?

    Luis Cazares (1/8/2016)


    Ed Wagner (1/8/2016)


    Brandie Tarvin (1/8/2016)


    rodjkidd (1/8/2016)


    Brandie Tarvin (1/8/2016)


    Here's a funny. The notification algorithm sent me an email from askssc.sqlservercentral.com telling me that I'd been mentioned in someone's query....

  • RE: Get count of events for each day between 2 dates

    joe-584802 (1/6/2016)


    Thanks Eirikur, that's awesome...!

    Thank you for taking the trouble to give me such a comprehensive example, you've given me another road to go down which I'll pursue.

    You are all...

Viewing 15 posts - 4,051 through 4,065 (of 8,753 total)