Viewing 15 posts - 19,366 through 19,380 (of 26,490 total)
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
Could you post some sample data in a readily consummable format for loading your tables and the expected results of the query based on the sample data?
For assistance in this,...
August 3, 2009 at 8:01 pm
Using the code from earlier in the thread, here is how it could be written using two CTE's.
with myTableCTE as ( -- This CTE creates the column field_C that is...
August 3, 2009 at 7:56 pm
Chris Kitchen (8/3/2009)
I'm wanting to make use of the new [Date] data type in SQL Server 2008 but I'm having a problem. I have a .txt file that contains...
August 3, 2009 at 7:39 pm
It could take several minutes for a the cluster to failover if the active node should crash. All sessions would be disconnected during that time.
Not sure what you could...
August 3, 2009 at 7:34 pm
Allister Reid (8/3/2009)
August 3, 2009 at 4:53 pm
I have tried rewriting your code such that I could read it easier.
Please review both the SELECT and UPDATE statements. Let us know if the SELECT statement returns what...
August 3, 2009 at 4:48 pm
In addition, the code you are posting may not work as written.
August 3, 2009 at 4:20 pm
So, the addition of two columns in the stored procedure definition also resulted in the stored procedure returning two addtional columns as well, correct? Are these additional columns also...
August 3, 2009 at 4:18 pm
rboggess (8/3/2009)
David Reed (8/3/2009)
Srsly? You find Tom Demarco's "lack of experience" disturbing? Or Jeff Atwood's experience too limited to agree with his conclusions?
I didn't say "lack of experience" -- I...
August 3, 2009 at 4:06 pm
Here is my delimited split dunction for nvarchar values.
August 3, 2009 at 3:54 pm
Viewing 15 posts - 19,366 through 19,380 (of 26,490 total)