Viewing 15 posts - 1 through 15 (of 30 total)
What is the syntax?
From the link Steve posted above:
--To Restore an Entire Database from a Full database backup (a Complete Restore):
RESTORE DATABASE { database_name | @database_name_var }
[ FROM...
December 21, 2015 at 12:55 pm
You can probably accomplish this using a self-join to your table.
It's tough to say much more than that without seeing the data with which you are working.
If you...
October 15, 2014 at 3:59 pm
Raghavender (10/8/2014)
Do we have any compatibility issues between SQL Server 2012 and crystel reports tool.
Which version of Crystal Reports do you have?
October 8, 2014 at 2:25 pm
There are several problems with building your own DBA. I've named a few below.
- You need at least two people
- You open your HR department up to harassment lawsuits
-...
August 26, 2014 at 10:52 am
v4vaas 19815 (8/11/2014)
Thanks for the input doug...but do you think I posted the question without checking/searching this in msdn.microsoft?? 🙂
Yes.
August 11, 2014 at 2:03 pm
Jeff Moden (7/31/2014)
Doug J. (7/31/2014)
This:
Steve Jones - SSC Editor (7/31/2014)
July 31, 2014 at 1:41 pm
Jeff-
This:
Steve Jones - SSC Editor (7/31/2014)
July 31, 2014 at 12:55 pm
My normal response: "I convert coffee into software."
April 24, 2014 at 9:01 am
To paraphrase what Sean has already said, please provide CREATE TABLE scripts for all of the relevant tables, INSERT Statements to populate those tables with test data, and and example...
April 18, 2014 at 3:15 pm
While you're at it, why don't you go ahead and post the query and definitions for the relevant tables here? I'd be willing to bet that you could get...
April 11, 2014 at 7:50 am
Eirikur Eiriksson (4/9/2014)
:w00t: you are right, it simply negates the right hand side value 🙂(donk, operator precedence...)
One of those days?
April 9, 2014 at 1:18 pm
Eirikur Eiriksson (4/9/2014)
April 9, 2014 at 1:08 pm
Interesting question. Try putting together a CASE statement using the ROUND() function. Something like this:
declare @num numeric(10, 8) = 83.00381433 ;
SELECT CASE
WHEN round(@num, 5) - @Num...
April 8, 2014 at 11:30 am
robert.diley (2/26/2014)
(1 row(s) affected)
Msg 8134, Level 16, State 1, Procedure TestProc, Line 6
Divide by zero error encountered.
No...
February 26, 2014 at 2:17 pm
Viewing 15 posts - 1 through 15 (of 30 total)