Viewing 15 posts - 39,361 through 39,375 (of 39,455 total)
The only way would be to have a trigger "send" a message to the app. This may involve a COM type object, but I would recommend against it. If the...
August 14, 2001 at 10:30 am
Lots of debate on this one. Some people think that the data itself should generate the primary key.
I like to use identities, but they are problematic when moving data from...
August 14, 2001 at 10:28 am
I ran this:
create table Logins
(
LoginID varchar(8),
[Password] varchar (8)
)
go
insert logins select 'Bill', 'Gates'
insert logins select 'Tick', 'Tick123'
go
select * from logins
go
select * from logins where loginid='Bill' and [Password]=ENCRYPT('GATES')
go
drop table Logins
No rows returned...
August 14, 2001 at 9:54 am
Noel,
Outstanding!!!! I didn't know this.
Thanks for the info.
Are you interested in writing a short "Transferring System Tables" article? If not I will, but it's a great topic.
Steve Jones
August 13, 2001 at 2:14 pm
I am strictly MS for DB servers (5 SQL2K, 1 SQL7).
I do, however, work on the network architecture and management for our firewall and load balancer.
Steve Jones
August 13, 2001 at 11:01 am
My 2 cents:
Use Log shipping. Both methods will do the job, but when you have a failure and have to move back to the primary, replication will be more problematic.
Log...
August 13, 2001 at 10:58 am
It's hard to pick benchmarks, because what works for one app may not be good for another. Trans/sec is only a good benchmark under a steady load. If your servers...
August 13, 2001 at 10:56 am
August 13, 2001 at 10:50 am
You will likely have to call MS for support. Have any changes, anything at all, even not SQL related been made to this server? When was the SP applied?
Steve Jones
August 13, 2001 at 10:50 am
Use it on both.
export from v6.5 using it IF you are using the v2000 BCP program. You could also use the v6.5 program (on the v6.5 server) and then only...
August 13, 2001 at 10:49 am
What type of remote server? Different providers support different types of operations.
You should be able to add this item as a linked server and perform a delete against it. If...
August 13, 2001 at 10:47 am
You can get around the SQL 7 issue with a password, though you have to be aware of the differences in DTS tasks. Only some of the tasks are available...
August 10, 2001 at 7:56 am
August 9, 2001 at 1:04 pm
Rant does mean the same and nice rant.
I think you will find there will be a movement of the stuff you write in ADO to stuff MS has written. Don't...
August 9, 2001 at 1:03 pm
Not sure what you mean, but you can truncate the table and reload it each day.
Steve Jones
August 9, 2001 at 1:00 pm
Viewing 15 posts - 39,361 through 39,375 (of 39,455 total)