Viewing 15 posts - 61 through 75 (of 423 total)
I turned off the firewall and tested connecting from my laptop to the host with "hdcvs-lims-sql\ss2016" and it worked! That implies sql browser is working and likely that 1434 UDP...
April 12, 2017 at 3:31 pm
You must create constraints/indexes along with the table right from the start or you will end up fixing data later.
If you have wide rows, you will only get...
April 12, 2017 at 12:01 pm
It is not really a typing area; it captures the actual hotkeys you press. First I cleared all the ctrl+r existing hotkey mappings. Then, I assigned the hotkey to the...
April 12, 2017 at 6:52 am
Yes you can assign the old hotkeys to your functions but you may need to un-assign the hotkeys from new functions first:
April 11, 2017 at 2:39 pm
Yes, some hotkeys and features were removed from the display. I actually like having the "Show Results Pane" on the toolbar better than the old ctrl+r hotkey. Add it with...
April 11, 2017 at 1:57 pm
This all reminds me of co-workers asking what is the part number. Are they referring to the manufacturer's part number, the supplier's part number, or the one we assign to...
April 4, 2017 at 12:23 pm
I think your full path should include "Values".
/codeSystem/Values/value
April 4, 2017 at 7:54 am
I use VS2015 Pro and a co-worker just confirmed this works in VS2013 also.
Here is the right click to open with:
Here is the Add Program and Set as...
April 4, 2017 at 6:57 am
I don't see a connection between a large tempdb and switching to SIMPLE mode. Tempdb never shrinks except on restart.
Switching to SIMPLE during a critical time really freaks...
April 3, 2017 at 10:39 am
This works if you associate .sql files with ssms in file explorer.
Right-click a .sql file in a TFS solution and select Open with...
Press Add...
The Program...
April 3, 2017 at 9:04 am
I never implement weird things so I don't know empirically the performance impact. Float(53) is eight bytes so it is equal to a bigint data type. My main concern would...
March 27, 2017 at 6:37 am
Do you mean DSN instead of DNS? I've been burned in the past by redirection. It is probably ok if everyone is referencing the same redirector.
March 22, 2017 at 1:47 pm
May I suggest adding a column to your recursive table that stores the root value for each row. Have a trigger keep the column updated. All your subsequent queries can...
March 22, 2017 at 8:22 am
Maybe something like this. Generally, I use a function to normalize all date ranges for all reports.
SELECT
CONVERT(varchar(6),DATEADD(MONTH,-12,GETDATE()),112)+'01',
CONVERT(varchar(8),DATEADD(day,-DATEPART(DAY,GETDATE()),GETDATE()),112)
;
March 10, 2017 at 9:14 am
Does this meet your needs?
DECLARE @t table (vin varchar(10) NOT NULL);
INSERT into @t VALUES ('VO0100005'), ('VO0101553'), ('VO0099300');
SELECT vin, CAST(REPLACE(vin,'VO','') AS int) FROM @t;
March 8, 2017 at 12:27 pm
Viewing 15 posts - 61 through 75 (of 423 total)