Viewing 15 posts - 16 through 30 (of 98 total)
Thanks for clarifying Gail and Steve 🙂
October 14, 2016 at 5:28 am
I am bit confused here,
For a regular table without any index ( a Heap), the statistics get created on firing any query with some filter.
However, on the table with clustered...
October 14, 2016 at 5:08 am
I think table locking is the default behavior of SSIS.
File lock can appear if your DB has 1 table in the .mdf file.
Table locking is default behavior when I...
May 5, 2016 at 12:55 am
True, POC's are usefull.
But most of the companies today don't give that much time to developers to try something new or an alternative approach and come up with POC's.
They follow...
April 13, 2016 at 12:06 am
If it's less than 30 try to reorganize and if greater than 30 just rebuild.
This query should be more appropriate for you and will give you the command as well
SELECT...
April 12, 2016 at 9:16 pm
Thanks all for your comments and feedback 🙂
April 11, 2016 at 9:38 am
create table dbo.SSC1(CustNumber int, Name varchar(20), location varchar(10), division varchar(10))
insert into dbo.SSC1(CustNumber,Name,location,division)
VALUES
(1, 'Test1', 'MA', 'E'),
(2, 'Test2', 'ME', 'E'),
(2, 'Test2', 'ME' ,'G'),
(3, 'Test3', 'CA', 'E'),
(3, 'Test3', 'CA', 'G')
;with cte as(
select ROW_NUMBER()...
March 29, 2016 at 10:45 pm
I agree with John,however there is a third party tool from cozyrock that has various flavours of DFT tasks.
March 29, 2016 at 11:05 am
Great Jacob, you got it correct.
Thanks!!!
March 29, 2016 at 10:56 am
Do we need to make it to notnull and redo the partitiotion ? OR any other options ?
Alter the column to non-nullable
Alter the table to add primary key on the...
March 7, 2016 at 11:18 pm
Nice explanation Hugo and with this link that even I gone through yesterday, tells that Index structure are B+ and not Btree.
February 28, 2016 at 10:17 pm
Yes, we may call BTree as Balanced, though it is not official.
However the index structure is not a BTree, it's actually B+Tree.
When we see the difference between BTree and B+Tree,...
February 28, 2016 at 10:17 am
Thanks Gail for the clarification but I guess even in Sql 2000 bookmark lookup refers to either key Or RID
Check this link:
https://technet.microsoft.com/en-us/library/aa178418(v=sql.80).aspx
February 18, 2016 at 2:22 am
Viewing 15 posts - 16 through 30 (of 98 total)