Viewing 15 posts - 3,721 through 3,735 (of 9,643 total)
Jeff Moden (11/25/2009)
November 25, 2009 at 12:18 pm
Do the packets have actual identifiers? Are the items already in the packets? How does the actual, physical process work? That affects how you have to do...
November 25, 2009 at 12:01 pm
Well first you have to create the packets and the container_packets. Then you can use the container and container packets to migrate the packet_items. I'm assuming you are...
November 25, 2009 at 11:21 am
I'm not sure what the problem is, so I can't really offer advice. Do you mean moving the data from the 3 table design to the 5 table design?
November 25, 2009 at 10:09 am
Since they are SP's you could add code that logs when an SP is used an then query that table.
November 25, 2009 at 9:55 am
I don't see anything in your design that limits an item to one packet. You would need a unique constraint on ItemID in the PacketItems table in order to...
November 25, 2009 at 9:52 am
You can run a command like this in the batch file using sqlcmd:
DECLARE @ReturnCode int
EXECUTE @ReturnCode = master.dbo.xp_delete_file 0, N'Path to Backups', 'Backup File Extension', 'Date To Delete Before'...
November 25, 2009 at 9:44 am
There are basically 2 methods suggested for doing this:
1. Use a Lookup component and send the unmatched rows to the insert and the matched rows to an Execute SQL...
November 25, 2009 at 9:34 am
Triggers are synchronous and are part of the transaction so if the trigger fails the transaction rolls back. Here's an introductory article I wrote about triggers[/url].
November 25, 2009 at 9:25 am
You want to create a custom template. Here's a search that returns several results on how to do it.
November 25, 2009 at 9:15 am
Right. That was the point I was making. There is no easier way, at least not that I know of.
November 25, 2009 at 9:08 am
The collation will matter in regards to sorting and comparison. For instance I'm going to guess that the way the Spanish collation handles the accented letters handles that differently...
November 25, 2009 at 9:00 am
Okay, heres a search of this site for reporting services articles. There are a bunch.
November 25, 2009 at 8:53 am
Take a look at SQL Reporting Services. It comes free with SQL Server 2000 and later. Drag and Drop report designer and the end user goes to a...
November 25, 2009 at 8:50 am
You can use SET DATEFORMAT. The Date Format comes from your language settings otherwise.
November 25, 2009 at 8:45 am
Viewing 15 posts - 3,721 through 3,735 (of 9,643 total)