Viewing 15 posts - 46 through 60 (of 74 total)
Thanks SJCSystems.
I want it to delete from base database (which is alias b) based on A.Update_Type = 1. But your suggestion reminds me of one thing. May be i need...
June 19, 2002 at 8:31 am
Use DBCC CheckDB
DBCC CHECKDB (<dbname>, NOINDEX, <repair option>) WITH ALL_ERRORMSGS
Quote from BOL:
_____________________________________________
Value Description
REPAIR_ALLOW_DATA_LOSS Performs all repairs done by REPAIR_REBUILD and includes allocation and deallocation of rows and pages for...
May 2, 2002 at 9:27 am
Creating a temp monitor table and poll this table at regular intervals (say every 30 sec) from my front end using a timer control.
April 30, 2002 at 10:26 am
Can't you issue a Delete stmt to DB2 thru the same way you issue a Select stmt?
April 30, 2002 at 10:24 am
May be you need to have "With" verb before (NOLOCK). I did not try and i am not sure.
April 30, 2002 at 10:19 am
Best starting point:
Data Warehouse Tool kit by Ralph Kimball
Foreward by Inmon.
April 30, 2002 at 10:15 am
You might want to post this in appropriate forum.
April 30, 2002 at 10:14 am
I have experienced something similar before i installed SQLServer service pack. Try installing latest service pack.
April 30, 2002 at 10:13 am
What is active/active and active/passive
April 30, 2002 at 10:08 am
I tried something similar to this and it works. May be you are missing something minor. What is the error msg you get?
April 30, 2002 at 10:05 am
1)Definitely create Primary Key.
2). Have lot of test data and create a workload.
3). Use Index Tuning wiz.
4). Use Profiler and get the timing.
5). Look at the...
April 30, 2002 at 8:40 am
This would probably help with what you need:
select left(o.name, 30) 'Table Name', left(i.name, 30) 'Index Name', i.indid, i.status from sysobjects o inner join sysindexes i
on o.id = i.id and...
April 30, 2002 at 8:28 am
Viewing 15 posts - 46 through 60 (of 74 total)