Viewing 15 posts - 35,476 through 35,490 (of 39,769 total)
Not sure there's an easy way to do this in 65. Been a long time. I know modifying system tables worked easier in 65 and you might be able to...
January 7, 2004 at 1:53 pm
Will add it to the list and see. The server is in the US on Mountain time, BTW.
January 7, 2004 at 1:49 pm
select a.*
from table1 a
right outer join table2 b
on ....
where a.xx is null (pick some column)
January 7, 2004 at 1:48 pm
Is this SQL Server 7? The sort order and code page are different on the restore server. You set these when you install the server.
January 6, 2004 at 6:04 pm
dbcc checkidentity will allow you to reset the seed for the identity column.
January 6, 2004 at 6:01 pm
I like your method. It's simple, fast, almost bulletproof. Other methods will be more complex and have more places for things to go wrong.
The biggest issue is to be sure...
January 6, 2004 at 5:58 pm
I'd do this in two steps in DTS. First import this into a table that just moves the data. Easier this way.
Then setup a stored procedure that selects the top...
January 6, 2004 at 5:51 pm
January 6, 2004 at 11:04 am
Are you saying EM is slower than QA?
Does 8 seconds really matter? I'm sure you'd like an answer, but I don't have one. At times EM is slower or faster...
January 6, 2004 at 11:02 am
I knew someone that tried it, seemed to work. Chris Hedgate wrote an article (http://www.sqlservercentral.com/columnists/chedgate/sqlandjavagoonadate.asp) on it. I'd email him and see.
January 6, 2004 at 11:00 am
Still in Yukon Beta 1 BOL so I'd guess yes.
How do you use this?
January 6, 2004 at 10:53 am
Don't use it here, but the MS Operations team uses it extensively for the MS.com site. If this is an issue, I'd bet that custom scripting is used to get...
January 6, 2004 at 10:49 am
LIKE
create table MyTest1
( myid int
, mttxt text
)
go
create table MyTest2
( myid int
, mttxt text
)
go
insert mytest1 select 1, 'This is a test'
insert mytest1 select 2, 'This is a test2'
insert mytest2 select 1,...
January 6, 2004 at 10:48 am
Viewing 15 posts - 35,476 through 35,490 (of 39,769 total)