Viewing 15 posts - 4,141 through 4,155 (of 7,636 total)
Yeah, it's some Mode-80 syntax restriction, but I do not understand why. Maybe someone more conversant in SQL 2000 syntax can comment.
You could also try what Jeffery is suggesting,...
December 30, 2008 at 3:15 pm
Hmm, must be an old open transaction then.
Execute this command:
select *
from master..sysprocesses
where dbid = db_id(N'your DB')
Look at the "Last Batch" time for any processes with open transactions. ...
December 30, 2008 at 2:47 pm
Jeff Moden (12/26/2008)
December 30, 2008 at 2:31 pm
I believe that this means that the Log Reader is not running or is not running against your database.
December 30, 2008 at 2:20 pm
GilaMonster (12/30/2008)
DECLARE @SomeVar TABLE (id int)They appear in tempDB's system tables as something like #08EA5793
OMG, I cannot believe some of the stuff that you know Gail! How on earth...
December 30, 2008 at 2:03 pm
It's "Application.CalculateFull".
December 30, 2008 at 1:56 pm
jason brimhall (12/30/2008)
December 30, 2008 at 1:46 pm
The other thing that I will mention, is how I do it: Views.
Yeah, I know we already went over that, but I do it a little bit differently. ...
December 30, 2008 at 1:33 pm
Well, I am not sure what else you can do. I do not think that EndPoints can be used for this, but I am not sure.
You may be able...
December 30, 2008 at 1:29 pm
From the 2008 BOL:
The Scalable Shared Database feature enables you to scale out a read-only database built exclusively for reporting (a reporting database). The reporting database must reside on a...
December 30, 2008 at 1:09 pm
We will need to see the Sproc's code, the table definitions and the trigger code.
December 30, 2008 at 1:07 pm
I think a better question is "Whats a shared scalable database?" This is the first time that I have ever heard of it. Amazing.
December 30, 2008 at 1:00 pm
Nah. Just replace any appearance of "st.{col_name}" with:
(Select {col_name} From sys.dm_exec_sql_text(qs.sql_handle))
It's not as efficient as your orginal query, but it should still work just fine.
December 30, 2008 at 12:48 pm
Change it in the Management Studio Table Designer. It will take care of everything.
December 30, 2008 at 12:35 pm
Viewing 15 posts - 4,141 through 4,155 (of 7,636 total)