Viewing 15 posts - 38,581 through 38,595 (of 39,466 total)
I use #1, but like this:
declare @err int
select @err = 0
-- do something
insert.....
if @@error <> 0
select @err = -1
-- do something else
update.....
if @@error <> 0
...
December 19, 2001 at 10:18 am
December 19, 2001 at 10:11 am
Can't restrict sa, similar to the inability of restricting the domain admin. what is missing, however, is the auditing ability (or the take ownership tracking) in SQL. I've seen this...
December 19, 2001 at 9:55 am
You are welcome and thanks a bunch for the followup. Hopefully this will help someone else.
Steve Jones
December 19, 2001 at 9:54 am
3M rows!!! Yikes!!!!, could probably rewrite and get much better performance.
My suspicion (and that's all it is) is that the fibers are making a difference. Also, check...
December 19, 2001 at 9:53 am
A good career move for you.
Please come back and ask more questions, we love to help!!!!!!
(also visit some of our sponsors
Steve Jones
December 19, 2001 at 9:50 am
You should be able to just place the data files on the SAN and set the proper pathing (if the SAN can be addressed as a \\server\share.
As far as something...
December 19, 2001 at 9:44 am
December 18, 2001 at 7:47 pm
December 18, 2001 at 4:49 pm
That's a good point.
check all db settings before backup and after. See if something changed.
Steve Jones
December 18, 2001 at 4:48 pm
December 18, 2001 at 4:47 pm
Scooter, a really interesting question and one I will have to do some followup on.
I checked Inside SQL Server 2000, no mention.
Checking BOL and Technet also turned up nothing, same...
December 18, 2001 at 4:09 pm
temp tables are created using the same create table syntax, but prefixing the name with #
CREATE TABLE #MyTemp ( ref int, design int, ...)
insert #MyTemp
(ref,design,codigo,familia,stock,pv1,ivaincl,tabiva,pcusto,usr3,usr4,usr1,usr2,ststamp)
select ref,DESIGN,codigo,familia,stock,pv1,ivaincl,tabiva,pcusto,usr3,usr4,usr1,usr2,(select ref as ststamp) from...
December 18, 2001 at 3:07 pm
A return value is returned as in from a function. If you want it to print, then use SELECT or PRINT.
Steve Jones
December 18, 2001 at 3:04 pm
http://www.microsoft.com/traincert/mcp/mcdba/default.asp
Books will vary by exam. see our products section.
Steve Jones
December 18, 2001 at 11:21 am
Viewing 15 posts - 38,581 through 38,595 (of 39,466 total)