Viewing 11 posts - 151 through 161 (of 161 total)
Hi,
have a look at pivot table in BOL. This shows how a case statement can be used to do roughly what you want to do.
Paul
July 16, 2003 at 3:05 am
hi,
try (from BOL)
create procedure {proc_name}... with encryption.
create trigger {trig_name} on {object_name}
with encryption
Paul
July 16, 2003 at 2:56 am
Hi,
don't forget that applying security patches from Microsoft can change the version number also.
Paul
July 15, 2003 at 6:56 am
hi,
just do the restore again with force restore over existing database, rather then removing it forst
Paul
July 11, 2003 at 3:42 am
hi homerJ
have you tried to DBCC the database ? (or just the table) This might clear the problem.
Paul
July 10, 2003 at 9:29 am
Hi HallD
you could try using substring to return the column name as follows :-
create table incomplete_test
(col1 int , col2 varchar(10))
insert into incomplete_test
values (0, "A")
insert into incomplete_test
values (0, "")
insert into incomplete_test
values...
July 10, 2003 at 5:30 am
hi,
in 6.5 backups couldn't be loaded into a database that was smaller than the original. Therefore if the database has been created/extended to a particular size then the secondary database...
July 9, 2003 at 9:00 am
hi,
in 6.5 backups couldn't be loaded into a database that was smaller than the original. Therefore if the database has been created/extended to a particular size then the...
July 9, 2003 at 8:57 am
hi,
use set rowcount 1 before the update, and only one row will be updated. (remember to use set rowcount 0 to display both records afterwards !)
Paul
July 8, 2003 at 9:26 am
hi,
taken directly from BOL,
"For example, to bulk copy data from the Authors.txt data file to the authors2 table in the pubs database, specifying that the data file is...
July 8, 2003 at 1:54 am
Hi, i've had a similar problem in the past. Too many successful login messages in the errorlog. What I did was use the NT command FINDSTR to ignore any lines...
July 3, 2003 at 2:38 am
Viewing 11 posts - 151 through 161 (of 161 total)