Viewing 15 posts - 91 through 105 (of 960 total)
have you used a cache file , is it up to date ?
October 23, 2015 at 3:25 am
Hi Sergiy
I can demonstrate what I am explaining in my video , no gimmicks just plain tables and rows.If you have a few minutes , please add me on skype...
October 23, 2015 at 3:12 am
merge operator doesn't require the same column structure or number, it can be used to combine results from table that have different number of columns , I am not sure...
October 23, 2015 at 1:58 am
covering indexes and included columns are fine for OLTP systems but for DW where the base tables are already in 100 of GB or TB it doesn't become viable. Design...
October 23, 2015 at 12:43 am
Mainly I think the reason this discussion is dragging on is because there is a misconception of how indexes work for OLTP system vs DW systems. best practices for 1...
October 23, 2015 at 12:40 am
Here are the scripts , I usually create the video to show the steps to reproduce the issue, mostly for those cases where it more important to...
October 23, 2015 at 12:15 am
Big table resides in a single file , it can be made to sit in multiple files but without any control over which row goes into which file ( proportinal...
October 23, 2015 at 12:02 am
select * from sys.columns where column_id in (
select column_id from sys.index_columns where index_id =(
select index_id from sys.indexes
where object_name(object_id)='DELIVERY_IN')
and object_name(object_id)='DELIVERY_IN'
)
and object_name(object_id)='DELIVERY_IN'
October 22, 2015 at 11:26 am
a virtual machine hosted on a cloud provider like Azure or AWS would help , all you need is a internet connection at that point, but you are at the...
October 22, 2015 at 10:20 am
One can always hope 🙂
I wonder if we should test OLTP performance using data sets instead of actual row by row operations that will be encountered in production.
Its one of...
October 22, 2015 at 10:10 am
Horizontal table partitioning , link with performance characteristics document below
http://enabledbusinesssolutions.com/blog/does-partitioning-improve-performance/
October 22, 2015 at 8:47 am
Hi Sergiy
Clustered index only works when searching on the key column, it fails for all other DW use cases. A DW doesn't perform seeks it performs scans ( nobody fetches...
October 22, 2015 at 5:28 am
Partitioning can improve performance mainly in the following ways
-For very large tables partition elimination does provide real benefits
-Disk placement of files - striping the data where different months...
October 22, 2015 at 12:17 am
I guess there is no harm in leaving it as is , but i noticed that File and FileGroup backups can no longer be restored once this happens because...
October 22, 2015 at 12:05 am
I tried the above link and it gives the message
The filegroup 'Defunct_FG' cannot be removed because it is not empty.
Way to recreate the issue ,
- Create a...
October 21, 2015 at 1:29 am
Viewing 15 posts - 91 through 105 (of 960 total)