Viewing 15 posts - 811 through 825 (of 1,536 total)
Try this...
create table #results (index_name sysname, index_description varchar(200), index_keys varchar(300))
insert into #results exec sp_helpindex TABLE
if exists(select * from #results where index_keys like '%COLUMN%')
print 'Yep, theres an index'
else
print 'Nope, no index'
May 5, 2005 at 7:09 am
Use QA as mentioned in this post, it will tell you what's running inside SQL.
To set a cap on memory you should probably go through Enterprise Manager, into properties, memory...
May 4, 2005 at 12:04 pm
That's a network error. This could be either the exchange server is down, or the SQL Server is having network problems.
A full list of the MAPI error codes can be...
May 4, 2005 at 10:17 am
Are you using a DSN to define the connections?
May 4, 2005 at 10:14 am
It seems as though the process is being blocked by an orphaned distributed transaction.
See http://msdn.microsoft.com/library/default.asp?url=/library/en-us/tsqlref/ts_sp_wa-wz_3v8v.asp for more details.
May 4, 2005 at 10:11 am
Unless you specify a hard cap SQL will take memory when it needs it. You could have an application running against the database which is causing large queries to be...
May 4, 2005 at 10:08 am
Not elegant, but works for a column...
if exists (select sc.name from syscolumns sc(nolock) inner join sysobjects so(nolock) on sc.id = so.id where so.name = 'TABLEA' and sc.name = 'COLB')
print 'YAY'
else
print...
May 4, 2005 at 9:09 am
You might want to check out http://support.microsoft.com/kb/841251/ with regards Windows XP and firewall problems.
May 4, 2005 at 5:47 am
I would do exactly as you have mentioned above. Set the max memory for each instance, otherwise you'll end up with one instance taking all the memory leaving nothing for...
May 3, 2005 at 12:31 pm
Sorry, I've no experience with replicating data to Oracle.
April 29, 2005 at 5:26 am
Just wondered if you are seeing an IO bottleneck. RAID 5 is hella slow, can you check out a perfmon, see if you are getting disk queuing?
April 28, 2005 at 1:54 pm
From BOL:
EXEC sp_changeobjectowner [ @objname = ] 'object' , [ @newowner = ] 'owner'
April 28, 2005 at 1:52 pm
If the subscriber already has the schema and data correctly you could specify that option when setting up through the gui.
If you are concerned with table locking then you could...
April 28, 2005 at 1:51 pm
Another thing to check is as to, if you are running Windows 2003, that you have remote distributed transactions enabled. http://www.kbalertz.com/Feedback_329332.aspx
April 28, 2005 at 1:19 pm
I believe that lock hints are ignored on link server queries, as such your nolock is not having any effect.
Creating the view the way that you are however should force...
April 28, 2005 at 1:17 pm
Viewing 15 posts - 811 through 825 (of 1,536 total)