Viewing 15 posts - 2,326 through 2,340 (of 2,458 total)
I cannot find anything that states that it has become mandatory, but I did find someone claiming that the BOL for SQL 2008 (not R2) stated that it was...
December 17, 2012 at 9:35 am
forceman29 (12/13/2012)
December 13, 2012 at 10:57 am
I second all those that said Itzek Ben-Gan. There are some great stairways on this site. I would say that Greg Larson's Stairway to DML and Celko's Stairway to Data...
December 13, 2012 at 9:47 am
capnhector (12/12/2012)
December 12, 2012 at 6:07 pm
CELKO (12/12/2012)
Read about the Window clause, which makes it very easy to write running totals:
CREATE VIEW Running_Balance (payment_nbr, receipt_date, payment_amt, acct_balance)
AS
SELECT payment_nbr, receipt_date, payment_amt,
...
December 12, 2012 at 5:25 pm
Sean Grebey (12/11/2012)
December 12, 2012 at 3:15 pm
sanandh87 (12/12/2012)
Hi,... and I need dump also.
Thanks,
Anandh
I like this guy's blog and am using it to study for the SQL Serve 2012 certs. Note how he passed and why he...
December 12, 2012 at 2:53 pm
SSIS is the best tool for this.
December 12, 2012 at 1:51 pm
Your Name Here (12/5/2012)
December 5, 2012 at 6:54 am
I want to start by saying that I am not providing an answer here but rather providing a little food for thought....
All permissions are the same on both servers.
But the...
November 29, 2012 at 7:12 pm
Great, great article Dwain. Amazing work and perhaps your best article yet on SSC IMHO (it's certainly your longest).
I would have been delighted to propose a looping solution as...
November 29, 2012 at 6:48 pm
mike 57299 (11/28/2012)
... As part of our backup plan, we do transaction log backups every hour during the work day.
I would like to copy the logs to...
November 28, 2012 at 4:05 pm
sa.ordekci (11/28/2012)
...As i know, indexed fields increase searching time. For example primary key.
Indexes usually make queries faster. Primary keys usually make queries faster because an index is created when you...
November 28, 2012 at 3:59 pm
Viewing 15 posts - 2,326 through 2,340 (of 2,458 total)