Viewing 15 posts - 841 through 855 (of 2,647 total)
dbursey (5/30/2012)
May 30, 2012 at 1:51 pm
So, we had this issue at my previous company. Now, this database was refreshed nightly and not updated during the day... So this is a bit different. However,...
May 30, 2012 at 10:48 am
This is a 2008 forum. You will have better luck getting responses if you post to the proper forum.
May 29, 2012 at 2:36 pm
I have not seen this error, but logic tells me to remove the hint from the object. 🙂 Not sure if that counts as a work around or a solution.
May 29, 2012 at 12:48 pm
What exactly are you referring to as "upgraded?" For example, when I restore a 2005 database to 2008, it will have a compatibility of 90 (2005) unless I change it.
May 29, 2012 at 9:50 am
No reason to use Jeff's splitter if the data format is constant:
use tempdb
go
declare @test-2 varchar(125)
SET @test-2 = 'barrington, il 60010-4020'
SELECT RIGHT(@test, 10) AS zip, SUBSTRING(@test, CHARINDEX(',',@test)+2, 2) AS state, SUBSTRING(@test,...
May 29, 2012 at 9:29 am
Look... I just want to say, and I am no expert, but it seems clear from all of my research and time spent on this forum that to improve performance...
May 25, 2012 at 8:45 am
For those interested... It seems that they did not "deprecate" the feature of Transactional Replication with Updatable Subscriptions, but removed the option from the Wizard. You can still create...
May 24, 2012 at 3:14 pm
timwell (5/24/2012)
Lynn Pettis (5/24/2012)
May 24, 2012 at 8:14 am
Sean Lange (5/24/2012)
SQLKnowItAll (5/23/2012)
May 24, 2012 at 7:55 am
Jeff Moden (5/23/2012)
SQLKnowItAll (5/23/2012)
May 24, 2012 at 5:51 am
SQL Kiwi (5/23/2012)
SQLKnowItAll (5/23/2012)
Personally, I have never used any tools.
I just downloaded Schema Surf to try it on AdventureWorks. I have to say it's very impressive, and much more...
May 23, 2012 at 5:37 pm
SQL Kiwi (5/23/2012)
Lynn Pettis (5/23/2012)
But you are correct, someone else reading this thread may not know that SQL Server 2008 supports filtered indexes.
Or, more to the point, that they can...
May 23, 2012 at 5:12 pm
Personally, I have never used any tools. I look at it like a big puzzle. Of course, I first look for table names and columns that are named the...
May 23, 2012 at 5:08 pm
GilaMonster (5/23/2012)
SQLKnowItAll (5/23/2012)
SQL Kiwi (5/23/2012)
SQLKnowItAll (5/23/2012)
Also note that a unique column can contain 1 null...Unless the unique index is filtered to exclude NULLs 😀
Come on... That's like saying a column...
May 23, 2012 at 3:29 pm
Viewing 15 posts - 841 through 855 (of 2,647 total)