Viewing 15 posts - 1,876 through 1,890 (of 7,191 total)
February 2, 2017 at 7:09 am
February 2, 2017 at 6:00 am
Three questions:
(1) Are payments to be applied in order of receipt number, so that the lowest-numbered receipt for any store gets paid first?
(2) In your required output,...
February 2, 2017 at 5:22 am
And the expected results based on that, please?
Edit: oops, ignore that! Didn't see your update to your post before I posted.
Thanks
John
February 2, 2017 at 5:12 am
Write a CTE that numbers the rows, partitioned on the values of the single column, then delete from that CTE where the row number is greater than 1.
John
February 2, 2017 at 4:05 am
I would leave that to your presentation layer, if I were you. Excel and SSRS will both present the data in the form you're looking for very easily. What happens...
February 2, 2017 at 3:14 am
Where do I...
February 2, 2017 at 2:41 am
So is it OK now? I can't explain why it happened. At first I thought maybe it didn't upgrade all the components, but then I noticed that in the original...
February 1, 2017 at 9:27 am
This does everything in one go; from there you can create and/or populate your table accordingly.
DECLARE
@RowCount bigint
, @Schema sysname = 'TempTest'
, @Table sysname...
February 1, 2017 at 9:12 am
That depends on what you mean by can it be done. Its not easily...
February 1, 2017 at 8:23 am
Jonathan
What happens if you set the DelayValidation property of the connection manager to True? If that doesn't work, you could set the connection string property with an expression...
February 1, 2017 at 8:16 am
That can't be the whole script. I need to see everything, please, including where you're assigning values to those variables. And you still haven't answered how you're actually doing this. Don't...
February 1, 2017 at 8:00 am
padmakumark26 - Wednesday, February 1, 2017 7:43 AMFor variable passed through the property file we need two slashes.
Presumably that's because one of...
February 1, 2017 at 7:51 am
Mmmm... not much good without the actual parameter values, I'm afraid! But as Adi and Phil have suggested, try unduplicating those backslashes in your file path(s).
John
February 1, 2017 at 7:40 am
Viewing 15 posts - 1,876 through 1,890 (of 7,191 total)