Viewing 15 posts - 28,516 through 28,530 (of 39,810 total)
Set up a unique index if this is really important.
May 21, 2008 at 7:05 am
Agree with Sergiy. The error tells you the problem.
May 21, 2008 at 7:04 am
The other thing is this allows for scalability. If one client grows a lot, or becomes a query resource hog, you can easily move them to their own server.
May 21, 2008 at 7:04 am
This runs a query as a READUNCOMMITTED isolation level (http://www.sqlnewsgroups.net/group/microsoft.public.sqlserver.server/2007week16.aspx).
It allows you to read changed data as it doesn't set up locks on the tables, essentially dirty reads. Not necessarily...
May 21, 2008 at 7:03 am
You should read and understand what the log is doing. It protects your database and ensures integrity.
If this is production data, you should be running with full recovery mode and...
May 21, 2008 at 7:00 am
I see a note here about a post SP2 fix: http://forums.microsoft.com/TechNet/ShowPost.aspx?PostID=1481112&SiteID=17
May 21, 2008 at 6:59 am
It's a good point and we try to link back, though sometimes articles come with some time between them and many part series, so it's hard to link them all...
May 21, 2008 at 6:54 am
I'm always amazed how many people are weeded out from a simple test/quiz beforehand. At one point I made sure that I only interviewed people that got 75% or better...
May 20, 2008 at 3:08 pm
SQL2K5 doesn't have compressed backups without a third party tool. SQL 2008 will have them in Enterprise Edition.
May 20, 2008 at 9:30 am
The hard part about seeing value in features is having a place where they can be used. This is where I think the developers and designers of SQL Server need...
May 20, 2008 at 9:27 am
First, you shouldn't grant sysadmin privleges. That's a huge security hole and unnecessary.
When replication runs, the account on the distributor logs into SQL Server just like any other user. So...
May 20, 2008 at 9:25 am
You should never shrink the data files if you can avoid this.
Shrinking the t-log does not invalidate the backup chain. http://msdn.microsoft.com/en-us/library/ms190749.aspx
The log file does not shrink after a log backup....
May 20, 2008 at 9:22 am
Here's another article: http://msdn.microsoft.com/en-us/library/ms190749.aspx
May 20, 2008 at 9:19 am
sorry to be late getting back, but I think IN reads better, especially when other people will see the code. Easy to make mistakes with OR.
If someone says OR is...
May 20, 2008 at 9:14 am
Please post the code and errors or results here. I don't really want to download and open a .doc from the forums.
You can use CHARINDEX/PATINDEX to find the $ signs....
May 20, 2008 at 8:51 am
Viewing 15 posts - 28,516 through 28,530 (of 39,810 total)