Viewing 15 posts - 29,116 through 29,130 (of 39,771 total)
I agree with Brian that I haven't seen this. Are you using Windows Auth or SQL Auth?
March 25, 2008 at 3:35 pm
You never need to shrink the database, or almost never. This causes fragmentation and can slow your indexes and worsen performance.
Shrinking should only take place rarely when something unusual makes...
March 25, 2008 at 3:16 pm
ALTER might be preferred, but if it's not an answer, you don't get to suggest it 😉
The reference given, shows that SQL 2005 requires trace flag 3608. Perhaps that's not...
March 25, 2008 at 9:46 am
I think SQLGuru expressed concern that you're trying to solve a complex problem, meaning a very, very busy system, based on community advice. That type of system is one that...
March 25, 2008 at 9:33 am
It should be as wide as the article text is (it is here in IE 7 and Firefox 2), but it's not as wide as the page. There's a right...
March 25, 2008 at 9:13 am
Nope, don't do it. TSM will have a problem on the day you need to restore a database because someone (perhaps you) deleted a table by forgetting the WHERE clause.
Back...
March 25, 2008 at 9:10 am
I agree with Doug. allowing developers to make changes to anything other than development is asking for deployment issues.
March 25, 2008 at 9:09 am
With the varchar it doesn't matter. If they are supposed to be six, you can trim them with the SUBSTRING function.
I'd use CHARINDEX to find the space, then SUBSTRING up...
March 25, 2008 at 9:08 am
Check out my series on change control. I used to copy all changed things for a release to a second project as they were altered. This way we had the...
March 25, 2008 at 9:06 am
Good reference for the one thread per file. I swear I'd seen that in BOL (7, 2000), but perhaps not. Or I misread it 🙁
I've hard on the MVP side...
March 25, 2008 at 9:04 am
Native Client supports the newer features of SQL Server 2005 and I think some of the Access 2007 stuff, but I'm not 100% sure. If the ODBC driver works, I...
March 25, 2008 at 9:03 am
osql for SQL Server 2000 and SQLCMD for SQL Server 2005 are what you should use.
March 25, 2008 at 8:25 am
From a development standpoint, a database in SQL Server is a database, no matter what you're doing with it. If you have a local install of SQL Server, meaning it's...
March 25, 2008 at 8:24 am
If you always move all changes, because you don't keep things "in progress" in the development database, then SQL Compare from Red Gate (I work for them) or ApexSQL Diff...
March 25, 2008 at 8:22 am
Your match should work. I am guessing that for some reason one of the tables might have spaces or some other non-visible characters that are causing the matches to miss.
Have...
March 25, 2008 at 8:17 am
Viewing 15 posts - 29,116 through 29,130 (of 39,771 total)