Viewing 15 posts - 2,671 through 2,685 (of 7,168 total)
Locking pages in memory is definitely something to consider enabling if you are seeing Windows trim the working set from SQL Server. If this were happening you would see sudden...
December 21, 2012 at 5:42 am
Have you updated your statistics recently on both databases? If statistics are up to date on one and not the other SQL Server can generate or pick different execution plans...
December 21, 2012 at 5:31 am
Sean Lange (12/20/2012)
Here is one article on the topic. http://www.brentozar.com/archive/2009/08/stop-shrinking-your-database-files-seriously-now/%5B/url%5D
My reflex was to post this same link which is my favorite resource to pass along on these types of posts!
December 21, 2012 at 5:27 am
All users have permissions to create local temporary (i.e. temp) tables by default. There are no issues with creating a single new temp table in and of itself. However, populating...
December 21, 2012 at 5:22 am
Have you tried EXEC() AT?
EXEC('EXEC msdb.dbo.sp_start_job ''My_Job_Name''') AT [ServerName];
December 21, 2012 at 5:16 am
I have not seen deadlock events in the system_health session that I thought should have been there. The session is setup to 'allow single event loss' so it's possible that...
December 21, 2012 at 5:12 am
Both instances cannot be the default instance. It sounds like your 2000 instance was already running on port 1433 so you need to figure the port for the Express instance....
December 21, 2012 at 5:08 am
Deadlocks can occur for many reasons. Without further information it will be impossible to assist you.
What you need is the deadlock graph so it can be analyzed. Enable global Trace...
December 21, 2012 at 5:01 am
gantavasu (12/20/2012)
Here I am new to the Replication.
So i want to know what is the push and pull subscriptions and how it will work.
When it will use.
Also please suggest...
December 21, 2012 at 4:57 am
leaf_update_count and leaf_insert_count appear to track logical update and insert operations correctly on a clustered index but not how I would expect for a nonclustered index.
December 21, 2012 at 4:34 am
SELECT SOUNDEX('Costco'),
SOUNDEX('COSTCO'),
SOUNDEX('Costco Whls'),
SOUNDEX('Costco Wholesale'),
...
December 21, 2012 at 4:09 am
Which version of SQL Server are you using?
December 21, 2012 at 3:55 am
SQLSACT (12/21/2012)
December 21, 2012 at 3:47 am
You have a data type error occurring in the database when you run your query. What does your expression evaluate to at runtime? If you can capture that you can...
December 21, 2012 at 3:32 am
I am not sure if it will install since you have SNAC 11 but you can find it on the SQL 2008 or SQL 2008 R2 media. There is a...
December 21, 2012 at 2:47 am
Viewing 15 posts - 2,671 through 2,685 (of 7,168 total)