Viewing 15 posts - 121 through 135 (of 3,738 total)
I have a lot to do so I can't come up with a bullet list.
Keep the Staging and DW database separate. The main reason from my perspective is it allows...
September 8, 2016 at 5:14 am
speedcat (9/7/2016)
I'm...
September 7, 2016 at 5:29 pm
What do you mean play with the schema?
August 20, 2016 at 3:15 am
GilaMonster (8/17/2016)
Since you're on 2014, open a case with product support.
Actually that Server is 2012 but that is still supported.
Thanks.
August 17, 2016 at 4:07 pm
If I change the compatibility level from 2005 to 2008 and we experience issues chaning baco to 2005 is an option.
August 17, 2016 at 2:36 pm
GilaMonster (8/11/2016)
And did you recreate the index? If so,...
August 17, 2016 at 2:20 pm
GilaMonster (8/11/2016)
Welsh Corgi (8/11/2016)
DBCC CHECKDB(PrismData)
WITH EXTENDED_LOGICAL_CHECKS, DATA_PURITY, NO_INFOMSGS, ALL_ERRORMSGS,...
August 17, 2016 at 2:19 pm
GilaMonster (8/11/2016)
ThomasRushton (8/11/2016)
Have you tried dropping & recreating the index on that view?as in, drop the spacial index and recreate it.
It is not a view. It is a table.
Yes...
August 17, 2016 at 2:09 pm
I dropped and created it in the test environment for now.
Thanks. 🙂
August 11, 2016 at 2:31 pm
I cheated and went into SSMS and I found the name to be different so I executed the following and it worked:
DROP INDEX [SpatialIndex-20160728-162910] ON Postal;
I'm not sure why...
August 11, 2016 at 2:24 pm
I executed the following Statement to identify the extended index:
SELECT
OBJECT_NAME(PARENT_OBJECT_ID) AS table_object,
name,
create_date
FROM sys.internal_tables it
WHERE INTERNAL_TYPE = 207
AND...
August 11, 2016 at 2:19 pm
Gail,
I know that you no more than just about anyone.
I ask him to fix it but he declined.
August 11, 2016 at 1:57 pm
GilaMonster (8/11/2016)
Welsh Corgi (8/11/2016)
GilaMonster (8/11/2016)
ThomasRushton (8/11/2016)
Have you tried dropping & recreating the index on that view?as in, drop the spacial index and recreate it.
That is what I wanted to...
August 11, 2016 at 1:16 pm
I run the following command in a test environment which contains the same index and I do not get any errors:
DBCC CHECKDB(PrismData)
WITH EXTENDED_LOGICAL_CHECKS, DATA_PURITY, NO_INFOMSGS, ALL_ERRORMSGS, TABLERESULTS
Hmm.
August 11, 2016 at 12:48 pm
GilaMonster (8/11/2016)
ThomasRushton (8/11/2016)
Have you tried dropping & recreating the index on that view?as in, drop the spacial index and recreate it.
That is what I wanted to do but I...
August 11, 2016 at 12:43 pm
Viewing 15 posts - 121 through 135 (of 3,738 total)