Viewing 15 posts - 1 through 15 (of 430 total)
You need to identify pairs of discharges and rx (claims) for the same patient within your reporting period. Then rank them based on time difference and retain the closest. Where...
August 28, 2025 at 11:30 pm
If any column has a value in the second row that is unique and identifiable you can add a conditional split to the dataflow where the unmatched output is directed...
June 18, 2025 at 3:39 am
I tried to reply, but it failed to post, with an error "are you sure you want to do that". I think the issue is schema scope of stored procedures....
June 7, 2025 at 4:45 am
Where are you importing the package to? Another instance of msdb ? If the package is deployed and you don't import it into Visual Studio to make changes, why would...
June 4, 2025 at 8:53 pm
You can export the data as text files as long as you re-import the files to check it goes smoothly. People often find commas in csv fields or unescaped double...
April 10, 2025 at 5:15 pm
Not sure about the Azure piece, we tried it about 10 years ago and I think the SSAS as a service wasn't released yet, so we installed SSAS on a...
March 16, 2025 at 2:51 am
First question, did you process full on the dimension containing the error? I don't remember if you can process updaate a partition, but I did read something about process updates...
March 14, 2025 at 10:01 pm
It works fine as written on our SQL 2017 14.0.3238.1. database. If I remove the <30 filter I get the arithmetic error so it's clearly applying the filter first. Is...
March 14, 2025 at 6:57 pm
Thanks for the reply.
This will be a scheduled overnight process, with an Agent Job so manually running a query first isn't workable.
If you're restoring the same database every night...
February 21, 2025 at 4:25 pm
I usually restore filelistonly and copy paste the LogicalName and PhysicalName to a query window and then edit with search and replace, but I just looked for an easier way...
February 20, 2025 at 4:52 pm
Your best bet is to recreate the tables(s) using the preferred data types.
The primary reason you can't alter the column is that there is not a way for SQL Server...
February 18, 2025 at 6:08 pm
Thank you, Jeffrey.
Here's the script I used: >ALTER table clanPEOPLE ADD column peopleSpouseID nchar(10); and the error message returned: Command "ALTER" is not valid.
.
ALTER TABLE dbo.clanPEOPLE...
February 16, 2025 at 2:21 am
I think that ANY, SOME and ALL have the advantage that you can use comparisons like less than or greater than. Imagine the Beer table has cost and a country...
December 11, 2024 at 10:31 pm
If you have any empty strings you need to ensure they are not chosen as the shortest description.
SELECT TeamCode, Description,
...
November 7, 2024 at 10:22 pm
Sorry, I should have mentioned that sp_whoisactive is not a system stored procedure. It's something you can download and install, created by Adam Mechanic. It has not been updated for...
November 5, 2024 at 9:25 pm
Viewing 15 posts - 1 through 15 (of 430 total)