Viewing 15 posts - 1,666 through 1,680 (of 2,356 total)
You can't just put a disk in this. It's not like a "server". And, it's likely that the disks are already SSD's, although the hosts can be purchased...
December 2, 2016 at 10:40 am
Did you mean to post this is a different forum? SQL 2008 does not support Always on.
As for jobs, yes, you will need to create them in both...
December 2, 2016 at 10:11 am
DECLARE @TodaysDate datetime = getdate()
DECLARE @StartDate datetime = DATEFROMPARTS ( DATEPART(year, @TodaysDate) - 2, 1, 1)
SELECT @TodaysDate, @StartDate
November 28, 2016 at 12:28 pm
Here's some ideas.
Create a true / false check box labeled "Except". Keep your existing list of all of the possible choices in the drop down.
If the user...
November 28, 2016 at 12:09 pm
Steve Jones - SSC Editor (11/22/2016)
My son completed his Board of Review last night to earn his Eagle Scout rank. It's been a...
November 23, 2016 at 9:07 am
tschuler-738392 (11/18/2016)
Still get the error.
Running the following now but same issue.
select c.client_id,...
November 18, 2016 at 2:41 pm
First, lets make it readable
SELECT c.client_id,
c.client_name,
m.matter_id,
m.matter_name,
m.billable
FROM docsadm.client AS c
LEFT JOIN docsadm.matter AS m ON c.client_id = m.client_id
WHERE c.client_name <> ''
AND m.matter_name <> ''
AND c.client_id NOT LIKE '%.%'
ORDER BY c.client_id
This line...
November 18, 2016 at 2:24 pm
Isn't this functionally the same ?
WHERE Column50 IS NULL
It appears that you are testing for nulls incorrectly.
November 16, 2016 at 10:32 am
welcome.to.route66 (11/4/2016)
try vsql-email, you can find it on google, it is exactly what you want and saved me a lot of time.
Why? The OP was looking to send an...
November 15, 2016 at 11:50 am
Converting to a float is the problem.
Try converting to a varchar(10) instead of a float.
November 8, 2016 at 6:54 am
Wryan138 (10/30/2016)
Nope I'm a real person. I joined up an I've been reading EVERYTHING on the forum for
quite a while. The one thing I have noticed is...
October 31, 2016 at 6:19 am
I'm not sure I would consider this unfair.
In 2008, the only real thing available was mirroring. The spares were warm, and only one could be alive at a...
October 28, 2016 at 12:21 pm
sqlserverDBA2016 (10/24/2016)
but i'm just asking if whether after the installation of sql server 2014 , is there a backward compatibility...
October 27, 2016 at 2:49 pm
You are attempting to use a string function on a date or datetime data type.
You need to use cast or convert on the field first, then attempt the substring.
October 24, 2016 at 8:44 am
Viewing 15 posts - 1,666 through 1,680 (of 2,356 total)