Viewing 15 posts - 271 through 285 (of 432 total)
However, can you expand on it? Why MinRN and MaxRN?
MinRN is the alias given to the rownumber ordered by vacation hours ascending. The lowest (or joint lowest) will get...
June 26, 2022 at 3:58 pm
SELECT *,
CASE WHEN MaxRN =1 THEN 'Max' ELSE 'Min' END AS MaxMinDesc
FROM (
SELECT...
June 23, 2022 at 8:38 pm
I have always used procs, maybe because I started with SSRS 2000 and it was terrible, so I did everything I possibly could in the database and just used SSRS...
June 20, 2022 at 6:14 pm
I think there are two key things you need. Firstly the container needs to have a setting of MaximumErrorCount > 1 so that the it doesn't fail when the dataflow...
June 20, 2022 at 5:24 pm
Now I want to understand why it worked with "GO" why not with semi column.
I just noticed that you are using MySQL so I really don't know, but GO...
June 20, 2022 at 12:49 am
This might work for creating a table of local date times when Eastern Daylight Savings and Central European Summertime start and end for the next 10 years (based on current...
June 15, 2022 at 6:44 pm
It may be the permissions of the SQL Server Service account.
I just created a share and granted just myself permission to access it and I confirmed that I could in...
June 14, 2022 at 11:26 pm
Have you set up the aaa directory as a share?
That path "\\ServerA\aaa\" presumably refers to a specific drive on the server.
I have an audit that I reference using a mounted...
June 14, 2022 at 7:04 pm
Format could be derived like this:
CONVERT(CHAR(10),jobstarted,103) + ' ' + CONVERT(CHAR(8),jobstarted,108)You indicate output as "Rome Time". What timezone/offset is your source data in?
I would recommend...
June 13, 2022 at 9:55 pm
June 13, 2022 at 8:26 pm
Does this work? I don't know if the extra level of nesting is required, or whether you can just replace the select * with a column list.
SELECT...
June 7, 2022 at 5:29 pm
I would not use a row_number. Row_number is useful for returning a specific row. The requirement is to identify pat_ids that have multiple dx ,but do not have multiple excluded...
June 3, 2022 at 7:10 pm
One question, what if I have some dates as NULL values and want them to return?
The null date is ordered after the valid dates (in descending order) so will...
May 26, 2022 at 5:28 pm
Are you trying to execute multiple packages sequentially from a single execute package task?
If so then I think your execute package task needs to be in a for each loop...
May 23, 2022 at 7:16 pm
Viewing 15 posts - 271 through 285 (of 432 total)