Viewing 15 posts - 2,326 through 2,340 (of 6,486 total)
Evaleah -
Is your stored proc working the way you're expecting it to? Are you still having an issue? Jonathan mentioned some good advice, but it does assume...
November 3, 2008 at 11:01 am
Since you're aliasing the table - I think you need to start with using the alias in the top of the UPDATE statement, as in:
UPDATE SD
Since you can only update...
November 3, 2008 at 10:53 am
Have you tried turning the UPDATE statement into a SELECT statement and see how many rows you get back?
November 3, 2008 at 10:46 am
Jeff Moden (10/31/2008)
ry.rith (10/31/2008)
that you tell me about the solution.
I also do the same of yours to complete the crosstab-report, but something that i want is to know...
October 31, 2008 at 8:45 pm
Sounds to me like that should be something stored in the user profile table (a.k.a when does their week start?).
October 31, 2008 at 8:26 pm
Let's break the problem down a little. (let's call this a "hint")
How would you identify the rows in TableA that need the rows? What would the SQL look like...
October 31, 2008 at 2:17 pm
Matt Miller (10/31/2008)
That being said - it's been a while since I've had...
October 31, 2008 at 2:08 pm
I'd think Lynn's solution is the best (meaning - handle these from within the stored procs.
That being said - it's been a while since I've had to do...
October 31, 2008 at 2:02 pm
Jonathan Kehayias (10/31/2008)
I don't see anywhere in your code that you need CLR to do this. A Simple TSQL Trigger would do this much better.
Agreed. Never mind a...
October 31, 2008 at 12:41 pm
I thought you needed to fire the execution off from the pipe side, and not the "old" way?
As in -
SQLContext.Pipe.ExecuteAndSend(command);
and not
command.ExecuteNonQuery();
October 31, 2008 at 12:38 pm
jgrubb (10/31/2008)
Jeff Moden (10/30/2008)
Jonathan Kehayias (10/30/2008)
October 31, 2008 at 12:26 pm
dmc (10/31/2008)
October 31, 2008 at 10:40 am
Stopping the agent is a good solution only if no jobs are running at the moment (since it will prevent any jobs from starting). Stopping the agent really isn't a...
October 31, 2008 at 10:09 am
I was going to say you could probably use Dilbert's advice on this. Next time they go to the bathroom, peak into the books. The content should give...
October 31, 2008 at 8:06 am
Viewing 15 posts - 2,326 through 2,340 (of 6,486 total)