Viewing 15 posts - 886 through 900 (of 6,678 total)
I have created a Scalar-valued Function and called this from within my view - basically the join that I perform on the non-index fields I have removed from my...
July 12, 2021 at 8:28 pm
The first view holds circa 1500 records and returns circa 2200 through a second cte view.
The data is consistently refreshed throughout the working day - eg. every 5 minutes...
July 12, 2021 at 7:06 pm
Hi,
Thanks for getting back. There is no connection between [Owner],[PersonAttending],[Type] columns.
July 12, 2021 at 6:07 pm
There is a concern with using CONCAT to safety the string. If that string is varchar(8000) - and the data length is 8000 - this can and will fail with...
July 12, 2021 at 4:53 pm
So what problems are you having adding the additional steps? Pretty simple to add a copy/move step to backup (archive) the file - and getting the count of rows in...
July 12, 2021 at 4:14 pm
Here is a little different take on the solution:
Select [Code] = ltrim(substring(v.Item, 1, p01.pos - 2))
...
July 11, 2021 at 5:14 pm
I just checked the solution using TOKEN and my solution is almost a mirror of Jeffrey's:
left(token( @[User::strDate],".",3),4) + "-" + token( @[User::strDate] , ".", 2)...
July 11, 2021 at 3:48 pm
I see a couple of options:
July 10, 2021 at 4:53 pm
Or - it is the default database set in the connection string. How are these users connecting to the system - and what application are they using? Are they attempting...
July 8, 2021 at 8:50 pm
You don't create a table - and you don't create a table with delimited items in a single column like this. If you need a dynamic cross-tab/pivot then build a...
July 8, 2021 at 8:25 pm
What data would be contained in [DATA], and how would this table be used?
I would probably switch that to a view with a fixed pivot/cross-tab of all possible salary components. ...
July 8, 2021 at 6:59 pm
That is the version of SSRS - which may or may not be the same as the source system where you are getting the data. The dataset is configured with...
July 8, 2021 at 3:54 pm
According to this - it was removed and they have not added it back: https://feedback.azure.com/forums/908035-sql-server/suggestions/32896402-bring-back-tfs-and-git-in-ssms?page=2&per_page=20
Of course, their recommendation is to either use SSDT for source control - or you can...
July 7, 2021 at 8:56 pm
Use the Try/Catch from my sample code - then check to see what the error is when it fails.
July 7, 2021 at 7:01 pm
It appears you don't have access to the database system - only SSRS. Not sure the tool recognizes the difference between date and datetime so that isn't really a way...
July 7, 2021 at 6:59 pm
Viewing 15 posts - 886 through 900 (of 6,678 total)