Viewing 15 posts - 4,636 through 4,650 (of 5,103 total)
Yeah, How you could keep the code format?
I don't seem to find a way
February 26, 2004 at 7:43 pm
besides the above correction I believe that to use the connection object to execute the procedure is not the best way I would recommend you use the command object instead
February 26, 2004 at 7:36 pm
if you are using sp3 and hopefully you are then you will have to consider the effects of cross database ownership chaining
February 26, 2004 at 7:19 pm
SELECT SUM(*) as FINALVALUE
FROM
(
select count(*) as Count_A from A
UNION ALL
select count(*) as Count_B from B
UNION ALL
select count(*) as Count_C from C
UNION ALL
select count(*) as Count_D from D
UNION ALL
select -1*count(*) as...
February 26, 2004 at 7:10 pm
I just have a deja vu
Look at this thread
February 26, 2004 at 4:42 pm
if you can use ADP then That will make your life A LOT easier
February 26, 2004 at 4:39 pm
try to move as much as possible to the server side and encapsulate the logic in stored procedures.
February 26, 2004 at 4:38 pm
without more details all I can do is just guess
is it like:
Select tblName , Cnt
Form (your query)
UNION ALL
SELECT 'ALL' , Count(*)
FRom (your query)
HTH
February 26, 2004 at 4:35 pm
I really believe certifications add NOTHING. I took the tests and saw a lot of people pass them with me and most didn't have any clue of the theory/practice. Is...
February 26, 2004 at 4:26 pm
every time you need to delete a lot of records it is a good thing to make a back up first that way...
February 26, 2004 at 4:16 pm
If you want to know about the cons and pros of dynamic sql take alook at this
February 26, 2004 at 4:12 pm
following the racosta great suggestion a good thing would be to let a job doit for you
February 26, 2004 at 4:08 pm
could some app be changing the sa password?
That's scary!
February 26, 2004 at 4:06 pm
Viewing 15 posts - 4,636 through 4,650 (of 5,103 total)