Viewing 15 posts - 166 through 180 (of 430 total)
What makes you think the data is also in the primary file group?
I borrowed this code from somewhere and I use it to look at partitions. It should show you...
October 19, 2022 at 5:26 pm
Hopefully there are no non-ansi outer joins in the app code, as setting the compatibility mode doesn't make discontinued features work again.
Do you know how the ssis packages are expected...
October 14, 2022 at 9:55 pm
Either use the CASE statement or NVL. I think this is the right CASE syntax for oracle.
SELECT CASE OPS_FUNDING_DETAILS.REQUESTED_TOT_AMT
...
October 12, 2022 at 10:27 pm
This looks like an Oracle query.
What data type is CONST_EST_AMT? If it is numeric the query may work if you remove the single quotes from '0.00' or cast it to...
October 12, 2022 at 9:49 pm
I had not see that before. Very good, but I think the lines need to be in the cloud.
October 12, 2022 at 5:56 pm
I know you have an answer, but this may be one of the few cases where EXCEPT will give you what you need. Normally there are additional columns needed which...
October 6, 2022 at 7:52 pm
What is the event_type of those suspect pages? Could they have been fixed already?
September 29, 2022 at 5:01 pm
Why do you need to run the query six times for nine months? Do you need a count by month, rather than a total ytd count? Does the ExecuteDate need...
September 26, 2022 at 5:07 pm
All your date time values are the same, except for the second instance of p1 for 3333. How do you define which is the "first" row for a vid? Do...
September 26, 2022 at 1:33 pm
This is a rudimentary solution, but you can create a function that returns a 1 if the values meet the rule, and add a check constraint that the result of...
September 23, 2022 at 5:19 pm
Do you have any null or empty string IFSC values?
September 21, 2022 at 10:03 pm
Fun with Steve's answer:
His comments on the correct answer has a somewhat minor error, but for the fun of all of us, I'm not going to state it here,...
September 21, 2022 at 6:10 pm
For my educational purposes, can you let me know where the following doesn't work:
If you filter the right side of a left outer join using WHERE, the filter is...
September 20, 2022 at 5:27 pm
SELECT circuits.name AS circuit_name
,circuits.location
,circuits.country
,races.name AS race_name
,races.round
FROM circuits
LEFT OUTER JOIN races on circuits.circuit_id = races.circuit_id
AND races.race_year = 2009
WHERE circuits.circuit_id < 70
There are no races...
September 20, 2022 at 2:19 pm
The query works fine with the sample data. Do you have another example you can provide in a consumable form? Are you sure you're not grouping by SKU? The image...
September 19, 2022 at 6:28 pm
Viewing 15 posts - 166 through 180 (of 430 total)