Viewing 15 posts - 48,496 through 48,510 (of 49,571 total)
Is the full error message "The row was not found at the Subscriber when applying the replicated command." I didn't have a clue what you were talking about until I...
September 12, 2007 at 2:01 am
There shouldn't be. Views are inlined when SQL runs the query. But as I often tell my developes, try both ways and see if there's a difference
September 12, 2007 at 1:38 am
I'll have a go at writing something from scratch for you, cause I can't figure out the original script.
Is going to take a while though, please be patient.
Openquery requires that you...
September 10, 2007 at 12:29 am
select servername, serverproperty('productversion'), serverproperty('productlevel'), serverproperty('edition')
from #t where ServerName...
That's going to return for the machine where the query is run. You're not actually reading anything from #t there, other than the...
September 7, 2007 at 3:58 am
Depends why it's unresponsive. Are you seeing lots of blocking on queries? Are you seeing logins timing out?
Check the front end, see if it has connection pooling enabled. If not,...
September 7, 2007 at 2:39 am
SQl doesn't keep its error log data for a fixed time. Rather it keeps a certain number of historical error log files.
A new log file gets created whenever SQL...
September 7, 2007 at 1:50 am
Yes, they do charge. If the crash is a result of a bug, I believe that they waiver that charge (I could be wrong)
Does your boss expect you to debug...
September 6, 2007 at 10:05 am
My comment was directed at the OP, not the reply. Sorry for the confusion.
Select * from tempdb..sysobjects where name = '#tablename' won't return anything
September 6, 2007 at 9:32 am
OK, having had a careful look at your execution plan, the actualquery doesn't much resemble the earlier examples. As far as I can see, the actual query that you're having...
September 6, 2007 at 7:38 am
Yes, but not common. It's a role I have, though I often do other stuff too. As for advice...
Read, as much as you can. Books, white papers, blogs, forums. Also...
September 6, 2007 at 6:32 am
On each server run
SELECT @@SERVERNAME AS ServerName, SERVERPROPERTY('Edition') AS Version
September 6, 2007 at 6:06 am
Of course, you cannot use object_name with this id later, since the id is from another db.
Actually, you can. At least in 2005 SP2. Object_Name has been enhanced to...
September 6, 2007 at 5:23 am
SELECT
SERVERPROPERTY('ProductVersion') AS ProductVersion,
September 6, 2007 at 4:55 am
Viewing 15 posts - 48,496 through 48,510 (of 49,571 total)