Viewing 15 posts - 1 through 15 (of 43 total)
I went for the last solution in your post. I read them thoroughly, and this last solution turned out to work with minimal changes to my existing code. Thanks!!!
September 20, 2021 at 5:06 pm
July 14, 2017 at 8:17 am
@HanShi, thanks for the link to the article. I think this may be it in my case, so I'll be reviewing this further.
November 18, 2016 at 6:55 am
What if I create a transaction on the table and leave it uncommitted, will this cause a timeout in the script when trying to connect? If so, will this only...
October 20, 2016 at 8:01 am
Ed Wagner (6/17/2016)
June 17, 2016 at 7:57 am
Michael L John (6/16/2016)
My opinion would be to find the root cause, and fix that. ...
June 17, 2016 at 6:05 am
The connection failures seem like hiccups. So the idea for looping was to loop for some time, and finally exit and notify if it fails to make the connection. And...
June 16, 2016 at 3:09 pm
Jeff Moden (6/13/2016)
By any chance, is the ultimate goal to import the data into a table in SQL Server?
No. I'll be converting the CSV to XLSX for delivering reports.
June 14, 2016 at 6:33 am
Good morning Guys,
Thanks for your input. Federico's suggestion for using import-csv is what I ended up using. However, that adds a first line to the file that reads:
#TYPE System.Management.Automation.PSCustomObject
So in...
June 13, 2016 at 7:15 am
Some web development may be required. And/or maybe some local scripts to pull the data from the API. Here's one I found with a quick search on Bing: http://openweathermap.org/API.
My personal...
May 27, 2016 at 8:02 am
j-1064772 (5/4/2016)
According to Wikipedia, the US Social Security Number does NOT include a check digit dependent...
May 4, 2016 at 10:10 am
Sergiy (5/1/2016)
create table employee_id_mapping
(
employee_id bigint identity(1000000,1),
By using bigint here you're gonna just waste the system resources.
You may have 4 records in your database per every possible SSN number and still...
May 2, 2016 at 6:33 am
Ok, if anyone here has the time and/or patience to review my final thoughts on this issue, here it is. I think this will be the final approach (please disregard...
April 29, 2016 at 2:49 pm
Is there something missing here? Is this an assignment? What're the guidelines for output? I'm not seeing a pattern in the output.
April 29, 2016 at 1:00 pm
Sergiy (4/28/2016)
Since SSN has only 9 digits, changing hash function will not suffice because attacker can simply apply the function to all 10^9 SSN's and match the result against the...
April 29, 2016 at 7:18 am
Viewing 15 posts - 1 through 15 (of 43 total)