Viewing 15 posts - 1,156 through 1,170 (of 3,500 total)
Since you have a bunch of GETDATE()'s... why not just stuff that value into a variable, and then just compare to that?
DECLARE @CompareDate DATE =...
December 6, 2018 at 11:42 pm
The whole point of doing the delete in batches is that it doesn't increase the size of the log.
or am I missing something?
As for processing a...
December 6, 2018 at 9:19 pm
How about this? (Thanks for the data, but if can provide CREATE TABLE scripts, you'll get better answers, because people can just copy & paste to create your setup.
December 6, 2018 at 4:37 pm
When you set up the connection to your data source, did you specify Oracle as your source? Looks like SSRS is expecting you to be connecting to a different data...
December 6, 2018 at 12:40 pm
Is your backend Oracle? That looks like PL/SQL, not T-SQL.
December 6, 2018 at 12:07 pm
It shouldn't. The only way I can see that making a difference is if you're filtering the report based on who's running/reading it (using a filter on the username).
You...
December 4, 2018 at 3:25 pm
That looks normal. You don't have any filters on the subreport, do you?
What happens if you make the parameters for the subreport visible (temporarily) and open it by itself?...
December 4, 2018 at 12:15 pm
Why not use LAG() to get the previous ship date for a tracking number? This is ugly, but I think it'll work:SELECT x.tracking_number
, x.ship_date
,...
December 4, 2018 at 12:07 am
This is close...
CREATE TABLE #tblA (
Yr INT
,Title CHAR(3)
,Country CHAR(2)
,Age TINYINT
);
CREATE TABLE #tblB (
Yr INT
,Title CHAR(3)
,Country CHAR(2)
,Age TINYINT
December 3, 2018 at 8:36 pm
This sounds like a job for PowerShell
https://community.spiceworks.com/topic/468653-powershell-script-to-remove-the-password-never-expires-in-ad-to-users-in-a-file
December 3, 2018 at 1:23 pm
You'd be able to tell because when you drop the field on the wrong report, you'd get something like
= FIRST(DataSetName!FieldName.Value)
instead of just the fieldname.
=FieldName.Value
I...
December 3, 2018 at 12:11 pm
I used to work in healthcare, so I totally understand the confidentiality stuff. (Taking the Good Clinical Practices exam after looking at what they were doing nearly gave me a...
December 3, 2018 at 10:42 am
What kind of visual are you using for the subreport? Is it a tablix? I would test it by creating a simple tablix and populating it and see if you...
December 3, 2018 at 9:43 am
Why can't you use a function?
I'd use DelimitedSplit8K and be done... Why the arbitrary requirement? Is this a class assignment or something?.
December 1, 2018 at 1:16 am
Not sure how you would end up with only one record in your subreport. Are you using a parameterized stored procedure as the source for your subreport's dataset? Does the...
November 30, 2018 at 5:30 pm
Viewing 15 posts - 1,156 through 1,170 (of 3,500 total)