Forum Replies Created

Viewing 15 posts - 841 through 855 (of 3,348 total)

  • RE: sql server r services

    As far as I know, R services are part of SQL Server 2016, which is now in beta (yeah, I know, it's officially called CTP). It has not yet been...

  • RE: purging old data and outer joins

    Here are my thougts, based on the query, the execution plan you posted, and the comments. I have not looked at the CREATE TABLE / CREATE INDEX script; it is...

  • RE: Find Replace Text - Output

    UPDATE SomeTable

    SET SomeColumn = 'domain2\John'

    WHERE SomeColumn = 'domain1\John';

    If I am still misunderstanding you, then please post your question in a more precise form. No "table something...

  • RE: Date difff from two dates divide by count

    djreggaestyles (2/13/2016)


    count (claim_number) may noy work because, i want to divide the count of individual claims

    Just responding to the above without digging any deeper into the problem (so perhaps I...

  • RE: The RPO

    Raghavendra Mudugal (2/12/2016)


    From the answer section, it says - "Restore the differential backup from Friday night at 8pm".

    I have one doubt - do we have to install the diff-backup of...

  • RE: SQL Database Error

    The login failed error message that SQL Server returns to the client is vague by design (to prevent hackers exploiting the information they are given).

    You might find more information on...

  • RE: Find Replace Text - Output

    curious_sqldba (2/12/2016)


    I have a script which basically scripts out all the users along with permissions needed, my script will spit a script that should be executed to grant permissions. My...

  • RE: Can SQL Server 2012 be connected with Oracle?

    I have limited SSIS experience, but I do know that it comes with Oracle connectors. So you should not have any issue connecting to Oracle, getting data out, and combining...

  • RE: Join & Update

    I disagree with Grumpy's first suggestion. Oracle may not "need" the AS for a table alias (and neither does SQL Server), but including it in my opinion greatly increases readability...

  • RE: Can SQL Server 2012 be connected with Oracle?

    No need to install any additional components.

    Creating a linked server and using openquery are standard features in SQL Server.

    (You do obviously need access to SQL Server, and you need credentials...

  • RE: Can SQL Server 2012 be connected with Oracle?

    Should be possible using OPENQUERY.

    Documentation: https://msdn.microsoft.com/en-us/library/ms188427.aspx.

  • RE: Are the posted questions getting worse?

    Lynn Pettis (2/12/2016)


    Hugo Kornelis (2/12/2016)


    Someone, please tell me it's them and not me...

    It's them. They asked the same question (or extremely close to it) four years ago.

    Heh! I was...

  • RE: Are the posted questions getting worse?

    Someone, please tell me it's them and not me...

  • RE: overlap query where to and from can be same ( of next and previous range)

    rajemessage 14195 (2/12/2016)


    i want all records from #t

    which are overlaping with entered @pointfrom = 2 and @pointTo = 10

    Since you are unwilling to provide the very simple answer we...

  • RE: Help to optimize a SP

    First the most important question (if it has already been asked, I have overlooked it): How much time does this query currently take, and how fast do you need it...

Viewing 15 posts - 841 through 855 (of 3,348 total)