|
|
|
Grasshopper
      
Group: General Forum Members
Last Login: Sunday, December 02, 2012 9:30 AM
Points: 17,
Visits: 49
|
|
|
|
|
|
SSCrazy
      
Group: General Forum Members
Last Login: Tuesday, March 26, 2013 8:41 AM
Points: 2,562,
Visits: 3,451
|
|
So whats your requirement then ..Sorry i havent able to retrieve anyting from your miles- long script . you only need to post the stpred proc (which is creating prob or need assistence) here
-------Bhuvnesh---------- While 1 = 1 (Learning SQL....) Click to get fast response of your post
|
|
|
|
|
UDP Broadcaster
      
Group: General Forum Members
Last Login: Monday, May 20, 2013 1:53 AM
Points: 1,474,
Visits: 2,342
|
|
It's definitely one of the most complete examples of DDL I've seen on here - thanks.
But could do with seeing how far you've got with the proc so far. Why the restriction on the result not being a integer, and what should happen in the case it is?
Thanks
|
|
|
|
|
Ten Centuries
      
Group: General Forum Members
Last Login: Today @ 8:34 AM
Points: 1,209,
Visits: 629
|
|
Waste of time putting all that on here.
Start by writing the sql script that would perform this task and work from there.
I may be worng but this sounds fairly straightforward
Graeme
|
|
|
|
|
SSC Eights!
      
Group: General Forum Members
Last Login: 2 days ago @ 1:30 AM
Points: 803,
Visits: 2,124
|
|
as i'm in a bit of a lul at the moment I thought I've have a crack at it, and its one of the most comprehensive set of DDL I've seen on SSC, even if it is a little overkill.
One think I did notice is that the Extended cost is set as a Decimal(18,2) and I believe money has 4 Decimal places, so you might get truncation occuring.
You also need to decide what to do if there is a rounding issue on the Unit cost calculation, eg 200.0000/3 is 66.6667, rounding up will give incorrect values when multiplied back out, rounding up 66.67*3 = 200.01 and if you round down its 199.98.
The Only column I cant seem to get data for is the ExtendedPrice, but this is a bare bones stab at what you might be looking for.
CREATE PROCEDURE InsertSalesOrderPart @OrderNumber Int ,@PartNumber Int ,@Quantity Int ,@ExtendedCost Money AS
Insert into SalesOrderPart (OrderNumber ,PartID ,Quantity ,UnitPrice ,ExtendedPrice ,UnitCost ,ExtendedCost ) Select @OrderNumber ,p.PartID ,@Quantity ,p.Price ,0 ExtendedPrice -- WHERE DOES THIS COME FROM ,@ExtendedCost/@Quantity UnitCost ,@ExtendedCost From Part p where P.PartID=@PartNumber
I would suggest runing this first and check the data you get for a specific set of paramaters.
DECLARE @OrderNumber Int = <replace with orderno> ,@PartNumber Int = <replace with partId> ,@Quantity Int = <replace with Quantity> ,@ExtendedCost Money =<replace with cost>
Select @OrderNumber ,p.PartID ,@Quantity ,p.Price ,0 ExtendedPrice --Where does this comefrom ,@ExtendedCost/@Quantity UnitCost ,@ExtendedCost From Part p where P.PartID=@PartNumber
_________________________________________________________________________ SSC Guide to Posting and Best Practices
|
|
|
|
|
Grasshopper
      
Group: General Forum Members
Last Login: Sunday, December 02, 2012 9:30 AM
Points: 17,
Visits: 49
|
|
Sorry,
This is work related and something that someone asked from me. Be sure that I'll be posting more stuff. Thank you all for the reply.
|
|
|
|
|
Grasshopper
      
Group: General Forum Members
Last Login: Sunday, December 02, 2012 9:30 AM
Points: 17,
Visits: 49
|
|
|
|
|
|
SSCrazy Eights
        
Group: General Forum Members
Last Login: Today @ 1:17 PM
Points: 8,641,
Visits: 8,273
|
|
lex9120 (11/20/2012) Also,
by any chance does anyone have an idea on how to perform the following?
I need to create a stored procedure named PartInventory that returns a grid (temp table). The stored procedure takes one parameter named @PartID int and returns a table in the above format for that PartID. This shows the ins (receipts and returns) and outs (shipments and spoilage) for the given part. The InventoryType values are "Receipt", "Shipment", "Return", and "Spoilage".
And it also needs to returns these values in this order:
• PartID int • InventoryType char(8) • InventoryDate datetime • Quantity int • TotalCost decimal • UnitPrice decimal
You did a fine job posting ddl and sample data. However, it is very unclear what you want from this query. Can you explain in detail and clearly what you want here? It would also help a lot if you could pick a PartID and post what the desired results would be.
_______________________________________________________________
Need help? Help us help you.
Read the article at http://www.sqlservercentral.com/articles/Best+Practices/61537/ for best practices on asking questions.
Need to split a string? Try Jeff Moden's splitter.
Cross Tabs and Pivots, Part 1 – Converting Rows to Columns Cross Tabs and Pivots, Part 2 - Dynamic Cross Tabs
|
|
|
|
|
Grasshopper
      
Group: General Forum Members
Last Login: Sunday, December 02, 2012 9:30 AM
Points: 17,
Visits: 49
|
|
|
|
|
|
Grasshopper
      
Group: General Forum Members
Last Login: Sunday, December 02, 2012 9:30 AM
Points: 17,
Visits: 49
|
|
| I'm not sure exactly what the result would look like because they're just asking it from me. However, I'd like to see what the guru's would write based on the information. Please if possible.
|
|
|
|