Viewing 15 posts - 4,231 through 4,245 (of 5,111 total)
February 16, 2017 at 4:49 am
February 16, 2017 at 4:30 am
Is there the possibility that a user could have further sub folders in their share? For example:
DomainB\Server\ShareC\JoeBloggs\Financials\Sampledocument.ext
What would happen here if so?
February 16, 2017 at 4:21 am
Use a CTE and do a SUM of your intial group, and then do the AVG on the data within the CTE.
Without DDL and sample data though, can't...
February 15, 2017 at 12:28 pm
You'd need to do it as a subquery:SELECT TOP 2 CAST((SELECT Sales.SalesOrderID AS SalesID,
Territory.name AS...
February 15, 2017 at 9:53 am
February 15, 2017 at 6:34 am
You can use variables as part of your connection manager instead. If you create a variable that has an expression value of that day's file location I.e. C:\MyFiles\abc_15_02_2017.xlsx, you can...
February 15, 2017 at 5:03 am
Didn't you ask that question here? https://www.sqlservercentral.com/Forums/1841691/User-permission-to-grant-access
You have answers to that question there already, what's wrong with those? If you have further questions, you should reply...
February 14, 2017 at 8:55 am
February 14, 2017 at 8:05 am
Even if you add 24 hour clocks, you're still going to have problems if you have something last longer than a day, as you're recording no details of the start...
February 14, 2017 at 6:53 am
Guess work here, however, maybe...:USE DevTestDB;
GO
CREATE TABLE #ActivityLog (Radio_name VARCHAR(20),
Date_time DATETIME,
Activity VARCHAR(30));
GO
INSERT...
February 14, 2017 at 6:33 am
Personally, my suggestion here would be to fix your data, not fix the expression for SSRS. Effectively a value of "900 Euros" is telling you two things: 1. The currency,...
February 14, 2017 at 2:51 am
Is there any reason why you have to do this in T-SQL? SSRS Matrices or an Excel Pivot Table would easily achieve this goal without having the need for Dynamic...
February 13, 2017 at 3:53 pm
Viewing 15 posts - 4,231 through 4,245 (of 5,111 total)