Viewing 15 posts - 1,756 through 1,770 (of 2,649 total)
Mona,
the insert-update block does not do the update itself - just inserts the rows that need to be updated onto a a staging table, and then the "apply staged updates"...
January 12, 2020 at 11:55 am
you should then do yourself a favor and search for outer apply examples and study them.
they are incredibly powerful and know how to use them is a must for a...
January 11, 2020 at 7:14 am
something like this should do the trick.
the "allow" column returned by the SQL you only use for validation, and do not show on your page.
If for some reason for a...
January 10, 2020 at 11:10 pm
we would need the explain plan file itself, not images of it.
January 10, 2020 at 8:38 am
Frederico your code works!
Apparently somebody pointed sources to linked server to PRODUCTION (Damn.. I think that's why i wasn't getting a match for five days!..) And that's why function...
January 10, 2020 at 7:51 am
what are you trying to do now? the previous script you had was inserting into a SQL table - I gave you the base script for that.
This one seem to...
January 9, 2020 at 7:55 pm
while we are curious to see if the code is indeed doing what is supposed to do (Business rules may be correct) I decided to give an attempt at it...
January 8, 2020 at 7:27 pm
I wonder if the query is really doing what you wish it to do or if there is a better way to do it.
first cross apply "explodes" the records -...
January 7, 2020 at 10:16 pm
thanks for posting your attempt - didn't try to see if they had an error so apologies if what I'm posting looks similar
3 options - untested obviously as we don't...
January 6, 2020 at 8:01 pm
and what have you tried so far? this is a pretty simple function that any SQL Developer should be able to replace with a CTE and outer applies
January 4, 2020 at 11:23 pm
that is your problem - in order to use the command line you need to have SQL Server installed including Integration Services.
January 4, 2020 at 9:59 pm
what is the error and are you running on a server or on your pc?
note that to run from the command line you need to have SQL Server Integration Services...
January 4, 2020 at 7:18 pm
create the clustered index on the same partition schema - other indexes do not need to be on a partition but the clustered one does
January 4, 2020 at 2:08 pm
yes.... at a high cost mind you.
see https://docs.oracle.com/en/cloud/paas/database-dbaas-cloud/csdbi/use-hcc-this-service.html
and https://logicalread.com/2013/06/17/oracle-11g-hybrid-columnar-compression-mc02/
not for all versions of oracle
January 4, 2020 at 12:24 pm
its not as easy as that - and maxdop should always be set and not left at zero or 1 unless for a particular server that has been tested and...
January 3, 2020 at 11:02 pm
Viewing 15 posts - 1,756 through 1,770 (of 2,649 total)