Viewing 15 posts - 16 through 30 (of 30 total)
Yes, you are right, built-in sp_getapplock could be used in my solution instead of the user-defined semaphore table drop_fi_semaphore
, but the structure of the SSIS package would remain...
January 14, 2013 at 2:50 am
Arul R (1/10/2013)
The View is for which table, where is the query for that viewin the stored procedure.
January 10, 2013 at 2:56 am
Arul R (1/9/2013)
Hi Friend,I need to know about the below table,
view_all_partitions_trg_prod
.
Can u Pls explain.
Thanks
Arul R
In the article is written :
This script requires the creation of the big view in
January 10, 2013 at 1:46 am
To convert fast from INT to HEX :
right(master.dbo.fn_varbintohexstr(cast( Disconnection_cause as INT) ),2)
December 17, 2012 at 7:08 am
Bruce,
writing the same code I wrote using MERGE statement is not very easy , I am not sure if it is possible, and I wanted to provide...
November 14, 2012 at 2:15 am
A faster way to convert Hex to Dec is
select CAST(CONVERT(VARBINARY, 'FF00FF', 2) AS INT)
The string to convert must be at least 2 chars long :
select CAST(CONVERT(VARBINARY, 'F', 2)...
August 8, 2012 at 8:11 am
2 mld = 2billions .. it is very close to the max value for a T-SQL int
February 10, 2012 at 5:18 am
By the way, this dimension is Type 6 ..
http://en.wikipedia.org/wiki/Slowly_changing_dimension#Pure_Type_6_Implementation
January 19, 2012 at 6:00 am
Yes, you are right, this is not the best for disk space and performance, but recalculation of fact tables is much easier and often not necessary if there are some...
January 9, 2012 at 2:24 am
Benefit is a more loosely coupling between dimension and fact table .
It mays save up from need of recalculating the fact table if something go wrong, because the fact table...
January 5, 2012 at 12:39 am
Alexander , you are right : in my script is missing the Primary Key definition for the dimension .
The primary key will be on Surrogate_Key, Date_From .
This is not...
January 4, 2012 at 2:43 am
Josh Ashwood (8/9/2011)
However the more relevant question we are often faced with is what performs better - table variables, temp...
October 5, 2011 at 8:48 am
Nice script !!!
I suggest a small improving,
special handling not only of text datatype
but also of ntext
when 'ntext' then 'cast([' + column_name + '] as nvarchar(max))'
You...
May 17, 2010 at 4:09 am
Is possible to rebuild an heap simply by using :
alter table tt rebuild partition=all(x) ,
avalaible in Sqlserver 2008, online operation.
In SqlServer2005 is possible to use my script ,...
March 23, 2010 at 8:35 am
Reorganize is online , but sometime is necessary to rebuild an index, and rebuilding a given partition of a given index cannot be done online.
You could always rebuild online...
March 12, 2010 at 5:24 am
Viewing 15 posts - 16 through 30 (of 30 total)