Viewing 15 posts - 46 through 60 (of 75 total)
Henry_Lee (10/14/2016)
if your SSD is getting hung up, depending on the cost, it might be charper to RAID 0 a couple of cheap SATA3 SSDS than use a PCIE...
October 14, 2016 at 1:51 pm
Henry_Lee (10/14/2016)
October 14, 2016 at 11:27 am
I spin up VMs on my gaming machine when I want to do home lab stuff -
32 GB Ram, i7 4790k, 512 GB SSD, 5 TB spinning Rust. ...
October 14, 2016 at 8:43 am
Ok. What exactly is ANSI padding?
October 5, 2016 at 8:24 am
Eric M Russell (9/26/2016)
Steven.Grzybowski (9/26/2016)
Inside that locked box is medication. Lots and lots of medication. My regularly prescribed daily meds, every OTC NSAID you...
September 27, 2016 at 6:50 am
A locked box.
Inside that locked box is medication. Lots and lots of medication. My regularly prescribed daily meds, every OTC NSAID you can think of, allergy...
September 26, 2016 at 2:58 pm
Jeff Moden (9/14/2016)
Best way to fix this is to have a pork chop dinner with the people that are providing the data. 😉
I wish I could. The problem...
September 15, 2016 at 6:55 am
drew.allen (9/14/2016)
DECLARE @input VARCHAR(250) = 'abc,def,ghi,123,jkl,345,678,mno,901,234,567,pqr'
WHILE PATINDEX('%[0-9],[0-9]%', @input) > 0
SET @input = STUFF(@input, PATINDEX('%[0-9],[0-9]%', @input) + 1, 1, '')
You should also...
September 14, 2016 at 1:26 pm
That was a typo, I meant cross apply, and as far as modifications, it just had to do with different table schemas than what I posted here- more fileds than...
September 2, 2016 at 12:47 pm
Luis Cazares (9/2/2016)
CREATE TABLE Customers( id int, Point Geography);
INSERT INTO Customers
SELECT 1, geography::STGeomFromText('POINT(-122.34900 47.65100)', 4326);
CREATE TABLE Stores( id int, Point Geography);
INSERT INTO Stores
SELECT 1, geography::STGeomFromText('POINT(-125.34900 47.65100)', 4326)...
September 2, 2016 at 10:57 am
If I am not following the guidelines exactly, I apologize, I am blocked from seeing that article at my workplace.
--Sample Tables
CREATE TABLE Customers
(CustomerID BIGINT, Customername varchar(50),...
September 2, 2016 at 7:40 am
If you are looking for closest to the start date or end date, you could just use a query to identify all the records that are between them, and then...
August 31, 2016 at 7:04 am
Fixed. Issue was related to run64bitruntime getting set to true.
August 25, 2016 at 7:41 am
Thank you. The environment settings in SSIS are great.
August 18, 2016 at 9:07 am
Add the OPTION (OPTIMIZE FOR UNKNOWN)
August 12, 2016 at 2:40 pm
Viewing 15 posts - 46 through 60 (of 75 total)