Viewing 15 posts - 736 through 750 (of 2,694 total)
I believe your only solution for this is to setup a SQL Agent job that executes the SSIS package (with a defined proxy) and introduce a SP to allow your...
November 25, 2022 at 6:03 pm
what will that package do?
November 24, 2022 at 7:30 pm
what is that proc doing?
and what are you trying to accomplish (end target)
as it resides on SSISDB I would suspect you are trying to start a package execution - and...
November 24, 2022 at 2:32 pm
@databases = 'USER_DATABASES,db1,db2', -- USER_DATABASES will do all user db's including db1 and db2 - if your intention is to backup only db1 and db2 then your strings should be
@databases...
November 22, 2022 at 10:47 pm
as you have been advised on other similar queries you need to implement a storage of these metrics onto a table at a point in time - and then build...
November 22, 2022 at 8:06 pm
you need to dig through all tables, views and functions that query uses.
it is highly possible that one of them has a filter on the users (common for MS CRM...
November 21, 2022 at 10:33 pm
while the package is running its normal that the row counts is different - writing to a file is a lot faster than loading to a remote oracle database.
counts that...
November 18, 2022 at 12:37 pm
Just keep in mid that, "just because you can, doesn't mean you should"... Super long value lists can really eat up compile memory and compile time.
Oh, I get...
November 15, 2022 at 11:19 am
thanks for replies - does clarify things a lot.
regarding the particular test
insert into newtable with (tablock) select * from old table where $partition.<partitionfunctionname>(<partitioncolumn>) = <partitionnumber>
where partitionnumber = one of the...
November 14, 2022 at 3:14 pm
frederico_fonseca wrote:answer is not always correct on this case.
Interesting... When and how is it incorrect... in any case?
I didn't give more details just to allow others to try and...
November 14, 2022 at 11:14 am
How busy is that server?
for that spec the inserts into new table should not take 1 hour for a pitiful 12 million rows unless server is nearly maxed.
regarding table
- are...
November 14, 2022 at 9:14 am
But that doesn't have anything to do with how many drives you have or whether or not you mix MDFs with LDFs. It only has to do with the...
November 14, 2022 at 8:35 am
Cloud is slightly different than on prem - while on prem normally IOPS and max throughput are not limited on a per vm and/or disk type/size, on cloud that is...
November 14, 2022 at 12:31 am
for an azure sqldb its either how many vcores you allocated or how many dtu's depending on the model you chosen.
and how much ram and what are the disk types...
November 13, 2022 at 4:21 pm
Viewing 15 posts - 736 through 750 (of 2,694 total)