Viewing 15 posts - 1,276 through 1,290 (of 1,396 total)
I can't test it (don't have the table) and all of your column names are reserved words so here's a swag at it:
with range_cte(ID) as (
select
...
October 22, 2019 at 8:54 pm
Why not just create a primary key in table A?
October 22, 2019 at 8:25 pm
If 'jsonpayload' is valid JSON it could be updated in place. Using Sql 2016+ something like this (copy, paste, run) could work:
/* create a test table with...
October 19, 2019 at 1:29 pm
Is there a business definition that defines an "error" or is the error table only supposed to contain errors generated by sql? Please post the definition of the student table...
October 16, 2019 at 2:03 pm
I wasn't taking into consideration the Convert.To/FromBase64 calls that are used with the decryption method, so I wasnt converting to or from Base64 when i was performing the substring,...
October 16, 2019 at 3:46 am
..., then store the decrypted value(s) into a MySQL database. My task is now to get said Data onto our Reporting SQL Server and store as decrypted.
The MySQL is...
October 15, 2019 at 10:52 pm
Could you provide the definitions for the tables that you reference? Is there an integer identity primary key on id in the student table?
October 11, 2019 at 10:55 pm
Here's a tvf named 'left_chars' that attempts to generalize all of the requirements. Sorry I'm learning about APPLY (new hammer) so everything looks like a nail. The function should work...
October 10, 2019 at 1:54 pm
If the dollar values are randomly distributed across rows then any sample (of sufficient size, about 35 for reasonable precision and confidence) should have an average $/cust that's close to...
October 8, 2019 at 6:18 pm
It would be similar to what was posted except using your calendar table instead of the daterange function. Eomonth can't be used either because it's Sql 2016+.
Something like this:
October 8, 2019 at 2:28 pm
Yea yea, I know or I noticed after I posted that. Instead of eomonth() you could use:
dateadd(day,-1,dateadd(month,1,@test_month))
Then you could use a tally table and dateadd function. Or...
October 8, 2019 at 2:01 pm
This is an application for Jonathan's daterange function. Here is his article:
https://www.sqlservercentral.com/scripts/a-daterange-table-valued-function
Something like this:
declare
@input_yearint=2019,
@input_monthint=9;
declare
@test_monthdate=datefromparts(@input_year,@input_month,1);
select
count(*) days_in_month_excluding_wkends
...
October 6, 2019 at 11:44 pm
I'm thinking of check where the status is that of 12 as in the example for a month period, this is done via a mechanism of a table that...
October 5, 2019 at 5:51 pm
The top(1) protects from row expansion due to the inequality on date. That was the part I wasn't getting.
October 5, 2019 at 5:38 pm
If I'm understanding correctly there's a table with many status columns per userid. When any of the statuses change a new record is inserted which duplicates the unchanged statuses. Fyi,...
October 5, 2019 at 2:09 pm
Viewing 15 posts - 1,276 through 1,290 (of 1,396 total)