Viewing 15 posts - 4,981 through 4,995 (of 11,678 total)
GilaMonster (8/29/2013)
Koen Verbeeck (8/29/2013)
Are you saying you can't speed up inserts with minimized logging or partition switching?
Was the OP talking about large bulk inserts? They're not going to improve the...
August 29, 2013 at 6:18 am
HanShi (8/29/2013)
August 29, 2013 at 5:28 am
Brandie Tarvin (8/29/2013)
David Burrows (8/29/2013)
Jan Van der Eecken (8/29/2013)
August 29, 2013 at 4:59 am
GilaMonster (8/29/2013)
Koen Verbeeck (8/29/2013)
HanShi (8/29/2013)
You are not to be improving a table, but you need to improve the queries accessing that table.
And how can you improve a query? By updating...
August 29, 2013 at 4:43 am
Compression leads indeed to more CPU utilization, but if the CPU isn't under pressure, this shouldn't be a problem. Because the data is compressed, you need to use less IO...
August 29, 2013 at 3:30 am
The package execution returned DTSER_SUCCESS (0).
That means it ran just fine.
August 29, 2013 at 2:56 am
The easiest method to do this is to run this query on Oracle and see which functions error out.
Use Google to find the Oracle equivalent. (for example: convert sql server...
August 29, 2013 at 2:21 am
raga.bysani (8/29/2013)
We are moving record by record using for each loop container
But will this work without the package being failed , when ever there is...
August 29, 2013 at 2:15 am
I don't think that is possible.
Rows are moved in batches, and it's an all or nothing transaction.
If you want to implement something like this, you'll need to do the clean-up...
August 29, 2013 at 1:38 am
It's a free download, so I guess there's no license fee.
August 29, 2013 at 1:28 am
Rollback how? If a row is sent to an error output, it is not written to the destination.
August 29, 2013 at 1:25 am
HanShi (8/29/2013)
You are not to be improving a table, but you need to improve the queries accessing that table.
And how can you improve a query? By updating statistics, minimize logging,...
August 29, 2013 at 1:17 am
BIDS (now SSDT) is for developing BI solutions. You need SQL Server Data Tools (SSDT). Yes, I know they have the same name now 😀
The SSDT for database projects is...
August 29, 2013 at 12:41 am
Some of the things I'd check:
* are statistics updated?
* is the table indexed? Are they indexed well?
* Are there unnecessary indexes?
* compression
* partitioning
August 29, 2013 at 12:25 am
palotaiarpad (8/29/2013)
Please explain, why 'b.' is selected and 'b' not.
If the sequence is b, B, b., ... and you select data starting from B, the b is dropped.
Interesting question by...
August 29, 2013 at 12:21 am
Viewing 15 posts - 4,981 through 4,995 (of 11,678 total)