Viewing 15 posts - 76 through 90 (of 1,162 total)
Lynn Pettis (12/4/2013)
Just a quick question, does anyone know what port(s) SQL Server uses for its Linked Servers?
Whichever port the remote instance is listening on, it's just an outgoing connection...
December 4, 2013 at 10:21 am
Views maintain their formatting when created/altered like any other object. Is this a problem with how they're being applied in your deployment process/stored in Source Control?
October 22, 2013 at 3:26 am
I don't believe you can use a local temp table to populate a results table for sp_send_dbmail as it runs in a different SPID asynchronously.
You need to either use a...
September 27, 2013 at 3:14 am
You could move them to a (3rd) centralised location I suppose, but I don't see why that's a better solution than what you've already done, which I'd say was the...
September 25, 2013 at 6:25 am
Could you post the full error message?
There's a connect item related to restoring a SQL 2008 database using SSMS 2012 GUI, which posts an erroneous error message about LSN chain...
September 25, 2013 at 6:10 am
Roughly speaking, like the following (untested):
SELECT MTG_QCA = CASE WHEN ttss_avgeqcapointscore < 1 THEN 0
...
September 24, 2013 at 6:20 am
But when I add the option WITH SCHEMABINDING I got a error. I think I can't create aa view with schemabinding option because I try to make a view between...
September 24, 2013 at 1:50 am
It's definitely do-able and AlwaysOn can be a HA solution as well as a DR.
Remember that switch-over is not completely seamless and users will get disconnected (same with clustering), so...
September 18, 2013 at 8:16 am
Has the service account got rights for Instant File Initialisation?
http://technet.microsoft.com/en-us/library/ms175935(v=sql.105).aspx
August 30, 2013 at 3:42 am
David Burrows (8/29/2013)
Jan Van der Eecken (8/29/2013)
The cost issue is normal here in the UK as electronic books are taxed (VAT) and paper ones not.
So you'd think, but Amazon has...
August 29, 2013 at 6:08 am
lanky_doodle (8/27/2013)
HowardW (8/23/2013)
Another option:
DECLARE @units int=177
SELECT DATEADD(MINUTE,@units*6,CONVERT(TIME,'00:00'))
This works, but for me it has hh:mm:ss.ms, i.e. 17:42:00.0000000
Can I get it to just be hh:mm?
Pretty simple:
DECLARE @units int=177
SELECT LEFT(DATEADD(MINUTE,@units*6,CONVERT(TIME,'00:00')),5)
August 27, 2013 at 2:58 am
GilaMonster (8/25/2013)
What's your favourite index-related myth?
That PK = Clustered Index
August 25, 2013 at 3:19 pm
Another option:
DECLARE @units int=177
SELECT DATEADD(MINUTE,@units*6,CONVERT(TIME,'00:00'))
August 23, 2013 at 9:34 am
Steve Jones - SSC Editor (8/22/2013)
August 22, 2013 at 8:55 am
Procmeister (8/21/2013)
I am incredulous!!! Is there some other trace flag that...
August 22, 2013 at 2:09 am
Viewing 15 posts - 76 through 90 (of 1,162 total)