Viewing 15 posts - 841 through 855 (of 3,348 total)
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...
February 14, 2016 at 4:36 am
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...
February 14, 2016 at 4:33 am
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...
February 13, 2016 at 1:06 pm
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...
February 13, 2016 at 1:00 pm
Raghavendra Mudugal (2/12/2016)
I have one doubt - do we have to install the diff-backup of...
February 13, 2016 at 2:41 am
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...
February 13, 2016 at 2:28 am
curious_sqldba (2/12/2016)
February 13, 2016 at 2:15 am
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...
February 12, 2016 at 3:11 pm
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...
February 12, 2016 at 1:33 pm
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...
February 12, 2016 at 1:24 pm
Should be possible using OPENQUERY.
Documentation: https://msdn.microsoft.com/en-us/library/ms188427.aspx.
February 12, 2016 at 12:07 pm
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...
February 12, 2016 at 10:04 am
Someone, please tell me it's them and not me...
February 12, 2016 at 9:43 am
rajemessage 14195 (2/12/2016)
i want all records from #twhich are overlaping with entered @pointfrom = 2 and @pointTo = 10
Since you are unwilling to provide the very simple answer we...
February 12, 2016 at 9:27 am
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...
February 12, 2016 at 9:18 am
Viewing 15 posts - 841 through 855 (of 3,348 total)