Viewing 15 posts - 8,416 through 8,430 (of 9,641 total)
There is no way to eliminate logging. SQL Server writes changes to the Log and then to the database from the log. Changing the recovery mode to simple will...
July 14, 2008 at 1:26 pm
You could do it a couple of ways. You could concatenate all the columns in the table and then use LIKE. You could use "OR". If you...
July 11, 2008 at 9:45 am
David Griffiths (7/11/2008)
Admittedly I am using SQL Server 2000 so perhaps this is something that has since been resolved. But I work on a...
July 11, 2008 at 9:42 am
Okay, so what is the SQL that is being run in the VB app when it times out?? How long does it take to run in SSMS/QA? What...
July 11, 2008 at 9:40 am
You can also set up a server side trace that you can then look at to determine what is going on. My guess is you are sleeping when the...
July 11, 2008 at 9:31 am
What else is happening on the server when the job is running? Are there other jobs running that access the same resources? Are there backups running?
Without...
July 11, 2008 at 9:28 am
bdba (7/11/2008)
July 11, 2008 at 9:25 am
What is the app written in which is returning the error? Have you looked into the code that they are running when this happens? Sounds like there is...
July 11, 2008 at 9:11 am
I tried creating an excel file with some random dates and could not duplicate what you are seeing. Can you attach a subset of data in Excel?
Are you using...
July 10, 2008 at 10:02 am
It looks like you actually named the parameter in the stored procedure @tour instead of @TourID. Either change the stored procedure to use @TourID or change the .NET code...
July 10, 2008 at 7:29 am
Could you post some sample data?
July 10, 2008 at 7:20 am
Congratulations Gail. I was pleased to see you recognized as well. I always take the time to read any forum threads where I see your name.
July 9, 2008 at 1:51 pm
Congratulations. You both certainly have been contributors to the SQL Server Community.
July 9, 2008 at 1:43 pm
READ COMMITTED is the default Isolation Level in SQL Server. This is why a select will not finish until any exclusive locks are released.
For example in my example, if...
June 11, 2008 at 3:29 pm
Gabor,
I actually misread your original post. In order to insure that the second user sees the data prior to the delete while the delete is on-going you need to...
June 11, 2008 at 3:25 pm
Viewing 15 posts - 8,416 through 8,430 (of 9,641 total)