Viewing 15 posts - 46 through 60 (of 151 total)
It is true, that using Profiler may extend the duration of the test, as it will take up some resources, but in this case, I think that is acceptable. ...
May 21, 2014 at 7:19 am
If you can, do a profiler trace of the load test on sql 2008 and compare to a profiler trace on SQL 2012. You will likely find on SQL...
May 20, 2014 at 2:37 pm
I am going to guess that the logging logic is toward the end of the stored procedure. When a client times out (command timeout expired), the client gives up,...
May 20, 2014 at 12:30 pm
It may be possible, but it may be not under support. I currently have a SQL 2000 publisher with a SQL 2008 distributor/subscriber. You will likely want to...
May 20, 2014 at 12:22 pm
After the upgrade to SQL 2012, did you change the compaitbility level of the database, update the index statistics?
May 20, 2014 at 12:18 pm
Well, that was a quick test, anyway:
declare @boston datetimeoffset = '2014-05-20 12:00 -05:00'
declare @chicago datetimeoffset = '2014-05-20 12:00 -06:00'
select datediff (hh, @boston, @chicago)
May 20, 2014 at 8:43 am
Any chance you can use the datetimeoffset datatype? This will save the timezone information along with the local time. Datetimeoffset is a new(ish) feature in SQL 2012. ...
May 20, 2014 at 8:40 am
It's usually nice to have a backup admin (or two). So long as it does not affect the working of the application, you should be able to remove the...
May 19, 2014 at 3:10 pm
Wow. Now that is a stack dump.
Anyway, since you have other clients (your laptop) that can connect to the SQL Server, we can rule out just about everything on...
May 15, 2014 at 9:07 am
You will need to create the logins for the database yourself. I think I saw an article about that on the front page here, today.
Once the database has been...
May 15, 2014 at 8:51 am
Nope. The page headers have already been updated. The compatibility level only affects what features are available in the database.
May 12, 2014 at 8:33 am
No. By default, the user will have no permissions (ALTER) on the dbo schema. Give it a whirl.
May 6, 2014 at 9:04 am
One thing to note, is that the ability to alter a schema carries the ability to drop existing objects in that schema.
May 6, 2014 at 8:58 am
You can think of a schema as a logical container of objects. When you grant permissions on a schema, you are granting those permissions on all of the objects...
May 6, 2014 at 8:41 am
I have never seen SQL Server take 30 minutes to compile a plan. My guess is that you do not have an issue with the plan cache being wiped...
May 1, 2014 at 2:05 pm
Viewing 15 posts - 46 through 60 (of 151 total)