Viewing 15 posts - 3,811 through 3,825 (of 5,111 total)
April 28, 2017 at 6:38 am
Is sharepoint installed on a separate server to the SQL server as well (I should expect so). You need to ensure that it's installed on your Sharepoint host as well.
April 28, 2017 at 6:29 am
Permissions are cumulative. So someone accesses SQL server via Windows Authentication, and they have their own login, but also they belong to two Active Directory groups that has access to...
April 28, 2017 at 6:25 am
Pawternity leave.. How else do you think UK companies are going to retain talent...
April 28, 2017 at 2:32 am
I did just remember one concern with VSCode; if you ask it to store the password for your SQL Server login it keeps in it in plain Text on Ubuntu....
April 27, 2017 at 9:51 am
wassu007 - Thursday, April 27, 2017 9:37 AMHi Mike,Did you find the solution for it(package aborted logging)?
Thanks
This topic is 8 years old...
April 27, 2017 at 9:47 am
I've certainly enjoyed having a play around with SSoL at home. I actually use it as my test bed more often than the instance on my laptop, as I've almost...
April 27, 2017 at 8:01 am
April 27, 2017 at 6:33 am
April 27, 2017 at 6:00 am
Use a CASE statement. For example:CASE WHEN Value BETWEEN 0 AND 10 THEN 1 ELSE 0 END
Then use a GROUP BY on your Server Name...
April 27, 2017 at 4:07 am
Dynamic SQl is not really the way to go with this, I would say. How much control do you have over the way the parameters are passed (I.e. in delimited...
April 27, 2017 at 2:18 am
April 26, 2017 at 7:46 am
Lag works something like this:
SELECT m.monthIndex as CurrentMonthIndex,
LAG(m.monthIndex) OVER (ORDER BY m.monthIndex) AS PreviousMonthIndex
FROM months m;
You can read about it in full...
April 26, 2017 at 7:04 am
Viewing 15 posts - 3,811 through 3,825 (of 5,111 total)