Viewing 15 posts - 4,246 through 4,260 (of 6,486 total)
In order to redirect - you'd need to have a separate file (probably a text file) be the destination of the error. You don't want it to run into...
March 11, 2008 at 12:18 pm
carlos cachulo (3/11/2008)
THANK YOU VERY MUCH, IT WORKED JUST FINE!!!
welcome, happy to help!
March 11, 2008 at 11:59 am
Forget loops. You're in SQL server now, not in procedural code.
update CL
set u_resp=EVALOR
from cl
inner join (
SELECT ...
March 11, 2008 at 10:45 am
You can put in the port using the following syntax:
IPAddress,Port
or
Name,Port
As in
127.0.0.1,1542
March 11, 2008 at 10:35 am
You really don't need a cursor for this. I'd suggest some code, but there are enough errors in your code it's hard to tell what table is getting updated...
March 11, 2008 at 10:30 am
By the way - did you actually look in the place it told you to? What's wrong with that row?
from your error messages:
Error...on data row 257124
Is that the last...
March 11, 2008 at 10:10 am
Just move your condition into the count. As in...
Select id, count(case when param=1 then 1 else null end) as myCount
from mytable
Group by ID
March 11, 2008 at 9:32 am
If they're worried about statistics - why not just drop the table and recreate it? If truncate works, then you don't have any FK constraints.
There should be 0 stats...
March 11, 2008 at 9:01 am
Jeff Moden (3/11/2008)
I've seen some absolutely gorgeous VBS both formatting wise and code wise. ...
March 11, 2008 at 8:36 am
Good luck from another schmoe on that same long road.....
March 11, 2008 at 8:05 am
The place where the social contract seems to be broken is that compared to 2000, the licensing prices quadrupled, and for a product that has "half the shelf life". ...
March 11, 2008 at 7:57 am
I agree with above posts.
To answer your initial question however - if you restrict the size, and your log backup strategy isn't aggressive enough, then you run the risk of...
March 11, 2008 at 7:41 am
Developer Edition is good enough, all right. As a matter of fact - it's the same (functionally) as Enterprise Edition, so it might actually be considered by some to...
March 11, 2008 at 7:38 am
The concern is that functions tend to hurt performance quite a bit. Although they might improve readability, they have a tendency to take the ability to leverage things like...
March 11, 2008 at 7:24 am
Viewing 15 posts - 4,246 through 4,260 (of 6,486 total)