Viewing 15 posts - 3,481 through 3,495 (of 3,500 total)
Oh, okay... this is almost starting to sound like an episode of Intervention... "You gotta kick the cursor habit, man!! That stuff will kill you!"
I'm a recovering Access guy....
February 17, 2011 at 12:34 pm
Really interesting discussion! (nearly wrote "disscussion" which almost seems appropriate!) thanks everybody for your input and examples.
February 17, 2011 at 9:43 am
just create a summary query
SELECT Booking_ID, SUM(TEU) As BookingTotal
FROM [MG_BOOKING_EQUIPMENT_REQ]
GROUP BY Booking_ID
ORDER BY Booking_ID;
February 2, 2011 at 8:06 pm
If you use SSIS to do the data migration, you can change data types inside the SSIS package, and then write the data to the final table. Once you...
January 15, 2011 at 8:03 pm
Not enough information. Post your Partition Scheme and Partition Function. Are you returning only the month in the Partition Function?
December 13, 2010 at 12:28 pm
If the database is complicated, you may want to create views, stored procedures, and table-valued functions to return data to the users. Then you can basically hide the complexity...
December 13, 2010 at 12:24 pm
JayK (12/12/2010)
I have an Order_Products table which has all products for all orders in our database for the past 5 years. The Order_Products table is transactionally replicated on our reporting...
December 12, 2010 at 8:10 pm
Maybe I'm stating the blatantly obvious, but if you work your way through the Microsoft book covering the exam you're taking, you'll be okay. Just brew lots of coffee...
December 12, 2010 at 12:17 pm
d.qureshi (11/29/2010)
Can you give some examples how to create additional file on a C: drive where I have free disk space available?
You might want to cozy up with a good...
November 29, 2010 at 9:11 am
oh, ouch. I figured it would bring the database to its knees... should have done the math FIRST!!
November 15, 2010 at 11:32 am
Steve Jones - SSC Editor (11/15/2010)
Have smaller cross joins, or variable ones,...
November 15, 2010 at 9:14 am
LOL... Certification exam stuff is basically a total joke, in my opinion... but I have to do it...
I just found it odd that there's a ton of stuff on HOW...
October 11, 2010 at 11:59 pm
Okay, I'm stupid. When, if ever, should you truncate the log file? Or should you just move parts of it to another log file? Funny, NONE of...
October 11, 2010 at 11:20 pm
Thanks for the catch Nigel... coming from baby database land (Access) where everything is pretty much in one database, this takes some getting used to!
September 2, 2010 at 10:21 am
Viewing 15 posts - 3,481 through 3,495 (of 3,500 total)