Viewing 15 posts - 61 through 75 (of 599 total)
Well, no, because that would be a violation of the definition of UNIQUE.
What you want to do is either clean out the duplicate values or re-define your index/constraint.
The big question...
June 22, 2011 at 9:56 am
In my Googling I found a few saying it was different, but for SQL 2000. Anyhow, even when invoked from a one-off schedule it still ran to completion just...
June 22, 2011 at 9:26 am
eccentricDBA:
This makes sense and fits with what I am seeing. Solution is bad, though (and what I'm trying to avoid) as the files are very large and getting down...
June 7, 2011 at 1:06 pm
Steve,
This is the explanation I've always heard and understood to mean that the file size / space used would eventually even out, so that the smaller files with less data...
June 7, 2011 at 1:03 pm
Nope.
As a minor point, I'm in SQL Server 2005, not 2000. (Though I'm fairly certain this behavior remains the same.)
But that's also not the question I am asking. ...
June 7, 2011 at 12:28 pm
For stuff like that, you should investigate the (free) SQL Server Performance Dashboard tool. It should give you everything you need (and them some) in a usable format. ...
May 24, 2011 at 9:33 am
That depends upon how you set up the filegroups, etc. If you have only the PRIMARY filegroup and just files under that, the data will be loaded into all...
May 13, 2011 at 8:46 am
If you have an open query window to the DB from which you issue the ALTER DATABASE command, that open query window is the single user.
Check it out:
USE DBA_DB
ALTER...
May 12, 2011 at 2:48 pm
You will need to do the detach from the same query window.
Make sure it returns to multi-user when you reattach.
May 12, 2011 at 1:56 pm
Much better to set to single user mode.
ALTER DATABASE MyDB SET SINGLE_USER WITH ROLLBACK IMMEDIATE
No, users will not become "orphans" by kicking them off the DB. They just lose...
May 12, 2011 at 1:22 pm
When is not so important (though it can impact index fragmentation). What's more important is how frequently are you growing the data files and by how much? Too...
May 9, 2011 at 1:42 pm
Wahoo!
Sucks that you have to go through this but good that you can demonstrate the issue. Let's hope they fix it fast for you.
May 2, 2011 at 1:16 pm
Only if you need to convert it. For rather silly business reasons/vendor application issues, I'm having to do this myself for one of my DB's. I don't care...
May 2, 2011 at 1:10 pm
What Phil said. That's why I do the *+datavalue+* method quick check.
Some text editors have settings to show these return characters. I think WordPad does but I'm not...
May 2, 2011 at 12:06 pm
That's it.
The last character (subloc 5) is a carriage return
(UNICODE 13)
see here: http://www.ssec.wisc.edu/~tomw/java/unicode.html#x0000
So what you have in that column is:
0.99[Carriage return]
Sounds like your parsing needs to account for the carriage...
May 2, 2011 at 11:49 am
Viewing 15 posts - 61 through 75 (of 599 total)