Viewing 15 posts - 946 through 960 (of 2,840 total)
Did you check the error log to see what is the error message?
August 6, 2010 at 2:58 pm
Merge or transactional, both will have issues if your latency is high. There is not much performance impact by having any kind of replication if you have the distributor on...
August 6, 2010 at 2:57 pm
The users you created, what rights have you given? Give the User just Public right to the DB. Create a DB Role. Give rights for Select to just the views...
August 6, 2010 at 2:41 pm
I have seen this issue before. Have you ever renamed the SA account? The Upgrade looks for SA account. If it cant find it, it will throw the error.
August 6, 2010 at 2:37 pm
So when is Steve's Interview? And if it has already happened, where can we read about it? 😀
August 6, 2010 at 11:33 am
Steve, Wish you the best with the Interview. I do not think you need it. I am sure you will do good.
Lynn, Wish you the very best at your new...
August 6, 2010 at 6:51 am
When this Stored proc is run, it might be doing a count by checking on the sys.sysindexes. This sys.sysindexes does not update the count immediately as soon as the rows...
August 5, 2010 at 12:44 pm
This OP wonders why he has performance issue when inserting data.
August 5, 2010 at 12:34 pm
Steve Jones - Editor (8/3/2010)
Alvin Ramard (8/3/2010)
Roy Ernest (8/3/2010)
August 3, 2010 at 1:53 pm
You should see the looks I get from the Security at all airport when I am flying... 🙂 They take my passport, and come back after 15 minutes saying, "Yep,...
August 3, 2010 at 1:02 pm
There are quite a bit of DMVs that you can use to monitor and trouble shoot the TempDB growth.
Usually tempDB is used when you have Row Level version set...
August 3, 2010 at 11:58 am
There is setting that can be done using sp_reconfigure to mitigate this issue.
USE master
EXEC sp_configure 'show advanced options', 1
GO
RECONFIGURE WITH OVERRIDE
GO
EXEC sp_configure 'locks', '0'
GO
RECONFIGURE WITH OVERRIDE
GO
Check this out and let...
August 3, 2010 at 11:35 am
Five heads are better than two... Or so they think.. 🙂 That is why they prefer to take 5 not so good personnel (that comes cheap) over two competitive personnel...
August 2, 2010 at 3:02 pm
The @profile_id is the ID of the profile from the msagent_profiles table in MSDB.
The @profile_id specifies if it is a SnapShot Agent (1), Log Reader Agent (2), Distribution Agent (3),...
August 2, 2010 at 2:29 pm
Yes, You are right..... But if I had given the answer that "It Depends", I do not think it would have been that helpful.. 🙂 Thus I gave the long...
August 2, 2010 at 2:16 pm
Viewing 15 posts - 946 through 960 (of 2,840 total)