Viewing 15 posts - 1 through 15 (of 61 total)
Sorry, I just didn't check the avatars correctly sgmunson and jasona.work. A newbie, but still able to identify user names. 🙂
Yes, both servers in the same room so...
October 25, 2017 at 7:58 am
Thanks SSCoach, never heard of a linked server (only of linked tables between, say, Excel & SQLServer), but that sounds an interesting method. I'll digg down a bit.
Thanks...
October 25, 2017 at 7:32 am
INSERT INTO hashed(id, sha256)
SELECT id, convert(varchar(280), HASHBYTES('SHA2_256',id),1)...
July 18, 2017 at 4:05 am
Thanks Lynn, your code is clarifying. Still I'm confused as to why results display different. I probably don't get the different charsets involved? Any help welcome.
If I run...
July 18, 2017 at 2:58 am
Apologies all working fine.
I'm still in doubt re cleaning certain characters (' ', '-', maybe others). Should I do that in a single SQL command (e.g....
July 17, 2017 at 9:44 am
Thanks if that's the case !
But when I checked the HASHBYTES reference it seemed the entry is only varchar, nvarchar or varbinary. Maybe I misunderstood...
July 17, 2017 at 6:40 am
That worked fine, and I learnt something new !!
July 6, 2017 at 5:46 am
Thanks for the prompt reply. As said not very familiar with code chars, or how to switch from one to another.
July 6, 2017 at 4:58 am
Thanks GilaMonster, that worked fine.
One last question: being this a SQL script, if I run this .sql on a new system, would that recreate from scratch all the...
April 19, 2017 at 3:44 am
Thanks Jeff, perfect solution. Testing it now.
I also found this explanation, pretty much in the same line, that also seems easy enough:
http://blog.sqlauthority.com/2012/11/20/sql-server-using-rand-in-user-defined-functions-udf/
August 3, 2015 at 8:01 am
Thanks Jacob, that's really useful.
Some feedback for other people in the same situation:
-The issue was caused by lack of space in the disk. I couldn't do much about that (as...
May 1, 2015 at 3:12 am
Snapshot discarded then !! I've got the impression that this must be a lot simpler, though?
E.g, I've noticed that in SQL Management Studio if you right-click the DB, then Tasks>Generate...
April 2, 2015 at 8:58 am
Thanks Lowell, that really helps.
In case I decided to go the snapshot track using a script like:
CREATE DATABASE <name>
ON <file_spec1> {,file_spec2}
AS SNAPSHOT OF <source_db_name>
my questions would be:
-Does the snapshot...
April 2, 2015 at 8:25 am
Thanks Matt !!
I've tried this and, to my surprise, it seems to work. Very happy and a big thanks!!
I can't mark it as a defintiive solution as I still don't...
March 24, 2015 at 8:36 am
Viewing 15 posts - 1 through 15 (of 61 total)