Viewing 15 posts - 7,381 through 7,395 (of 7,636 total)
On SQL2005 you can get this from [font="Courier New"]select * from sys.dm_exec_connections[/font] in the client_net_address column assuming that their net_transport is TCP.
On Sql2000 it is a challenge. It appears...
March 23, 2008 at 2:02 pm
Steve Jones - Editor (3/22/2008)
March 22, 2008 at 9:06 pm
Wheter it is DDL or DML is irrelevant. It is a transacted operation and thus has to be recoverable. Physically it is modifying every row in the table,...
March 22, 2008 at 7:26 pm
Marios Philippopoulos (3/22/2008)
So in the following query, the login running the query is the same account in whose context the connection is...
March 22, 2008 at 2:40 pm
I don't know, Todd. My recollection is that your step #3 (drop the old column) still has the same problem.
March 22, 2008 at 2:06 pm
Yasir Masood (3/21/2008)
That explains why it is filling up the log file. If somebody could suggest a solution, I would appreciate it.Thanks
There is not much that you can do to...
March 22, 2008 at 9:56 am
OK, I believe that I understand now.
Frank.M.Perkins (3/22/2008)
March 22, 2008 at 9:35 am
Generally, you cannot make changes to the database within a scalar user-defined function:
http://msdn2.microsoft.com/en-us/library/ms191320(SQL.90).aspx
March 22, 2008 at 8:40 am
Are they in different domains? and if so what is the trust relationship?
March 21, 2008 at 10:26 pm
Kevin Durham (3/21/2008)
March 21, 2008 at 10:11 pm
You cannot guarantee order without an ORDER BY (or some other cursor method).
March 21, 2008 at 1:02 pm
Yes, absolutely. and with 3-tier and n-tier apps also.
March 21, 2008 at 12:55 pm
Viewing 15 posts - 7,381 through 7,395 (of 7,636 total)