Viewing 15 posts - 21,886 through 21,900 (of 22,189 total)
Hard topic to quantify. The one point I'd add is that mediocre or not, you basically have people falling roughly into two groups. Those that have a year or two...
April 19, 2007 at 5:33 am
Yow! What a question. Well, everyone has their own opinions. What's more, every situation is a little different. I'm working on an article right now for Simple-Talk on just this...
April 19, 2007 at 5:22 am
I'm sorry, I'm not sure. I just did the same thing you described and it worked fine.
April 18, 2007 at 11:30 am
Then you sir, are a gentleman and a scholar. I'm neither. Pass the hammer please.
April 18, 2007 at 7:46 am
sp_who2 is a simple way to see which processes are running. It shows the SPID. You can use that to kill a process.
I'm not sure if this is the answer...
April 18, 2007 at 7:04 am
Yeah, you'll need to change the app. The methods for accessing system metadata within SQL 2005 are different than they were in 2000. The views that look like the old...
April 18, 2007 at 7:01 am
That completely depends on your environment. For example, we have a server environment where some 3rd party apps are running that need 'sa' log-in in order to operate (can I...
April 18, 2007 at 6:57 am
Nope, sorry. Common Table Expressions are new in 2005.
April 18, 2007 at 5:12 am
I read this yesterday and wasn't sure what you're looking for. Would a common table expression work? This is derived from BOL:
WITH TableX AS
(SELECT e.ManagerId, e.EmployeeId, 0 AS Level
...
April 17, 2007 at 11:58 am
If you run a query against the sys.sysobjects system view in the master db, do you still see it?
SELECT * FROM sys.sysobjects
WHERE NAME = 'sp_executesql'
If so, note the type. It's...
April 17, 2007 at 11:50 am
What are you trying to do? There is a view available, sys.foreign_keys, which shows the basic information on a given set of keys within a database. Is that what you're looking...
April 17, 2007 at 11:46 am
Yeah, especially since M:M is usually done through a third table.![]()
April 17, 2007 at 11:35 am
Since you can only restore to a point in time you need some method of determining which transaction is your final point. You might want to check Lumigent LogExplorer or...
April 17, 2007 at 11:31 am
You have that 100% correct. As a matter of fact, the BOL says you can't mirror between two servers on the same cluster. Although, if you set up active/active clusters...
April 17, 2007 at 6:00 am
Yes, it does provide availability. The way that it was described to us when we were working with the Dell consultants on our last cluster configuration was that for high...
April 16, 2007 at 11:58 am
Viewing 15 posts - 21,886 through 21,900 (of 22,189 total)