Viewing 15 posts - 19,351 through 19,365 (of 26,484 total)
So, have you tried setting MAXDOP to 1 on the query in your stored procedure? Did it help?
August 5, 2009 at 6:32 am
You should still explicitly name the columns in the SELECT clause. Not that it may cause problems, it is just that is, for many of us, a bast practice.
August 5, 2009 at 6:29 am
I may have missed it, but you will want to ensure that @RESULT is initialized to zero (0) before you start the update.
August 4, 2009 at 11:01 pm
Is the Q: drive a mapped drive or a local drive on the server? If a mapped drive to a network share, you may want to change the path...
August 4, 2009 at 10:53 pm
Sorry, you can't insert data into two separate tables with one insert statement. You'll need to do it in two steps.
August 4, 2009 at 8:51 pm
Please tell me you aren't using the * in the SELECT clause in your production code. You really should explicitly declare the columns you are returning in a select...
August 4, 2009 at 8:44 pm
Please take the sample data you provided, and create the expected output that should be generated by the query. Please don't just describe the output, show use what it...
August 4, 2009 at 6:34 am
Jan Van der Eecken (8/4/2009)
August 4, 2009 at 6:27 am
Having found out you had double posted this request for help. I redirected everyone to this thread. Unfortunately, I failed to notice that one thread was in a SQL...
August 3, 2009 at 9:32 pm
Curious why you have double posted this request for help? You now have two threads going with different people answering the same question and those in one thread not...
August 3, 2009 at 9:21 pm
Bob (and every one else), I appreciate it. You may want to include me, her mom, and sisters as well. I have a feeling we may not hear...
August 3, 2009 at 9:12 pm
Looks like you are wanting to calculate the volume discount for each customer in real-time as orders are processed, is this correct?
Could you provide us with DDL for your tables,...
August 3, 2009 at 8:55 pm
Does the COGS calculation need to be run in realtime or as part of the end of day processing? Depending on the volume of data that needs to be...
August 3, 2009 at 8:35 pm
is another way to it without the cross join (on 1=1 in the ON clause of the inner join):
SELECT
ii.item_name,
ii.date_issued,
...
August 3, 2009 at 8:24 pm
This was possible in SQL Server 2000 using SQLMail, but I have not found any way at this time to do so with DatabaseMail.
I think it may have been considered...
August 3, 2009 at 8:04 pm
Viewing 15 posts - 19,351 through 19,365 (of 26,484 total)