Viewing 15 posts - 7,441 through 7,455 (of 15,381 total)
can you please let me know more about , why encryption is not the proper solution for this issue..?
You answered this yourself...
as far as I know from all our conversation...
July 22, 2013 at 1:53 pm
sqlfriends (7/22/2013)
When importing into the raw table, the studentID is set as varchar(9).
Then we select from the raw...
July 22, 2013 at 1:47 pm
I agree with Chrissy. If you need varchar(max) as a foreign key you have some very serious design issues. If you want some actual help you will need to post...
July 22, 2013 at 1:11 pm
I agree with Steve that if this information is potentially sensitive then the system was designed poorly. This type of information should NOT be populated through a number of tables....
July 22, 2013 at 1:07 pm
richard.noordam (7/22/2013)
you might...
July 22, 2013 at 12:19 pm
Your problem is the select statements inside your loop.
set @Recepient_Email = (select top(1) EMAIL From TESTDATA where @count=@count)
set @Body1 = (select top(1) TESTDATA.BODY + '' + TESTDATA.UNIQUE from TESTDATA where...
July 22, 2013 at 12:18 pm
Sue-651097 (7/22/2013)
But this doesn't solve the problem with the like operator as I cannot implement the wildcard %, or?
Yes you can still do a wildcard search.
inner join #search s on
...
July 22, 2013 at 12:12 pm
So what you really want is a way to randomize the values in your test system? This is an entirely different situation than encrypting data in a column. Of course...
July 22, 2013 at 12:08 pm
Here is the OP's "original post".
--------------------------------------------------------------------
Help! 😉 I have to run through a table of data a couple times (I think) to get the results I need. The subject...
July 22, 2013 at 10:49 am
Learner44 (7/22/2013)
can you please suggest me any way to achive the following objective.?
what should I do , in order to restrict other 5 users , having same access...
July 22, 2013 at 10:47 am
davdam8 (7/22/2013)
Show Offfff... 🙂I get the idea but it gives me:
ORDER BY items must appear in the select list if the statement contains a UNION, INTERSECT or EXCEPT operator
Why do...
July 22, 2013 at 10:21 am
Learner44 (7/22/2013)
July 22, 2013 at 10:18 am
jplankenhorn (7/22/2013)
Thanks for the feedback.I've seen the feature comparison, but that wasn't an issue.
If the features are not an issue than go with Standard.
July 22, 2013 at 10:11 am
Without the details that you can't get to post you are right, this is pretty hard to figure out what is going on. I know that some people do have...
July 22, 2013 at 10:07 am
davdam8 (7/22/2013)
->
INSERT INTO #mytable
(ID, Value)
SELECT '4','First' UNION ALL
SELECT '37','Second'UNION ALL
SELECT '44','Second' UNION ALL
SELECT '54','Third' UNION ALL
SELECT...
July 22, 2013 at 10:04 am
Viewing 15 posts - 7,441 through 7,455 (of 15,381 total)