Viewing 15 posts - 76 through 90 (of 231 total)
I assume you guys are saying that a column with a property of IDENTITY is a bad choice for a clustered index becuase it has been beat in your/our heads...
January 16, 2004 at 1:07 pm
You can not delete from a view that references multiple tables (AFAIK)
Try this:
use tempdb
create table one (nbr int)
create table two (nbr int)
create table three (nbr int)
insert into one select 1...
January 16, 2004 at 12:56 pm
SA covers you for three years, if you do not think you need/want to upgrade within that timeframe, you should not buy SA as it is more expensive (almost double...
January 16, 2004 at 12:49 pm
DTS is an awesome tool, this link covers some of the basics -
http://techrepublic.com.com/5100-6268-1043668.html
the books mentioned by Mani are good
HTH
January 16, 2004 at 12:47 pm
There are different ways to do this, for something like this linked servers may be a pain and I would use a DTS package to run the SQL scripts on...
January 13, 2004 at 9:11 am
Look up sp_addlinkedserver in BOL and see if that helps.
January 13, 2004 at 4:17 am
I enjoyed my copy from Seattle PASS, when do we get another one?
January 12, 2004 at 8:27 pm
And to add to Frank's post, deleted rows would cause the appearance of gaps.
January 12, 2004 at 8:21 pm
This page may help - http://www.algonet.se/~sommar/error-handling-II.html
January 12, 2004 at 8:18 pm
As you are not converting the actual column to a string, you might be right Jonathan, have to run some tests to confirm, also didn't realize it wasn't stored as...
January 12, 2004 at 11:54 am
Does watching football (american) count as life outside of computers and databases?
January 11, 2004 at 5:26 pm
I suspect you are needing something like this
create trigger foo on tablename
for update, insert
as
update tablename set modifiedDate = getdate()
where EventID in (select eventid from inserted)
This will accomodate batch inserts...
January 11, 2004 at 5:21 pm
Like Gary said, replication might be a possibility. Are you using this as an N-tier design and will be running reports from the second server or is this strictly for...
January 11, 2004 at 5:06 pm
Viewing 15 posts - 76 through 90 (of 231 total)