Viewing 15 posts - 361 through 375 (of 397 total)
My view on the case is log shipping. Although it is an enterprise option, it can be done manually (script to auto) in other version.
Transaction log replication is more on...
February 19, 2004 at 7:53 pm
If backup view maintenance plan, it is in one of options.
February 19, 2004 at 7:48 pm
Dynamic sql can help you.
What about two RefID in table1, which one to pick up?
February 19, 2004 at 7:06 pm
Try to recompile the sp. It could be result of old execution plan
February 19, 2004 at 6:49 pm
Check registry entry
HKEY_CURRENT_USER\Software\Microsoft\Microsoft SQL Server\80\Tools\SQL Query Analyzer\Options\GeneralTab\TemplatesPath
It should have the path information.
February 19, 2004 at 6:46 pm
It may stand on nonclustered primary key.
February 12, 2004 at 9:20 pm
use pubs
go
alter proc sp1 as
select * from #te456 where state = 'ca'
go
create proc sp2 as
select * into #te456 from authors
exec sp1
drop table #te456
go
exec sp2
February 8, 2004 at 8:28 pm
This means the data already has quality problem.
You can still add constraint by
alter table Appointment WITH NOCHECK add constraint FK_Appointment_ApptProcDetail foreign key (AppointmentID) references ApptProcDetail(AppointmentID)
February 5, 2004 at 11:38 pm
Add check constraint on smaller tables will help optimizer to search.
February 5, 2004 at 11:13 pm
I had similar experience. It was related to some kind memory thresh in ODBC driver.
You may check by selecting smaller table to verify.
February 5, 2004 at 10:57 pm
Every row in tbl_Tracking will scan through Acct_Stats. thus
8 million * 3 million at least.
Not to mention distint's impact.
Corellated join is an option.
February 5, 2004 at 10:32 pm
Enterprise manager Generate SQL Script is an option.
February 5, 2004 at 10:23 pm
*
from
INFORMATION_SCHEMA.KEY_COLUMN_USAGE a
where exists(select * from sysobjects
where a.CONSTRAINT_NAME = NAME and xtype='pk')
February 5, 2004 at 10:08 pm
Viewing 15 posts - 361 through 375 (of 397 total)