Viewing 8 posts - 1 through 8 (of 8 total)
Edwin (4/17/2009)
There is no sys.columns in SQL Server 2000.I executed the following t-sql:
SELECT COUNT(*) from dbo.syscolumns
where object_name([object_id]) = 'Table_A' no dbo.
Invalid column name 'object_id'
dbo.syscolumns and sys.columns are two different...
April 17, 2009 at 10:58 am
Here is a good blog entry from Kimberly Tripp explaining in detail the issues caused by using UniqueIdentifiers as your clustered index:
http://www.sqlskills.com/BLOGS/KIMBERLY/post/GUIDs-as-PRIMARY-KEYs-andor-the-clustering-key.aspx
April 15, 2009 at 8:32 pm
TRACEY (4/15/2009)
DBO.TRACEY_HOLD_POOL_BASE_ACCT A
INNER JOIN DBO.EXCEL_POOL_BASE_ACCT B ON
A.FY_CD = B.FY_CD AND
A.POOL_NO = B.POOL_NO AND
A.ORG_ID = B.ORG_ID AND
...
April 15, 2009 at 2:50 pm
Sharon Levine (4/15/2009)
April 15, 2009 at 2:46 pm
I've seen this problem come up when I was dealing with sql 2000 transactional replication. For me, it didnt cause a problem until an update or delete needed to...
April 15, 2009 at 10:21 am
I believe you'll have to either reinitialize the snapshot or manually insert the missing record on the subscriber to get it going again.
April 15, 2009 at 10:00 am
If the column "ID" is a primary key or unique key in the dbo.ABC table, you can create foreign keyes with "ON DELETE CASCADE" that references the ABC.ID column from...
April 15, 2009 at 7:36 am
Viewing 8 posts - 1 through 8 (of 8 total)