Viewing 15 posts - 3,571 through 3,585 (of 13,462 total)
creating a view that auto-decrypts the data makes the data no longer HIPAA compliant, doesn't it?
I'd say that is no different from storing the data unencrypted in the first...
April 29, 2013 at 12:57 pm
hmmm; i'd say there is always files that can be moved or deleted.
files in temp folders on the operating system, log files, , the already suggested moving of backup files,...
April 29, 2013 at 12:51 pm
This looks an awful lot like homework, so I'll frame my answer with that in mind.
It looks like the purpose of this exercise is to learn how to use the...
April 29, 2013 at 12:22 pm
do a find and replace to add QUOTENAME, so you can accommodate weird database names with dashes/spaces
FROM '+@pDatabase+'
--should be
FROM '+ QUOTENAME(@pDatabase) +'
April 29, 2013 at 11:07 am
i think you want DataGridView.Visible = false; enabled would be more like displaying, but removing editablity due to permissions or something.
visible is what you need to hide/show
April 29, 2013 at 9:27 am
aaron i'm sure you know that SQL doesn't order data in any specific order without an explicit ORDER BY clause.
in your case, i'm thinking you might do what you...
April 29, 2013 at 7:34 am
Blair Dee-474691 (4/29/2013)
April 29, 2013 at 7:21 am
since the accessing of data is done after the login, the log isn't going to help you.
you would need to add a new level of auditing to capture those...
April 29, 2013 at 6:16 am
ok here's my version, which i adapted from a DDL trigger i made for another post.(add new objects to this role)
this will generate three roles, one for each requirement, then...
April 26, 2013 at 2:37 pm
actually, both powershell and ssms are using smo under the covers.
the batch separator is an option you can select, i believe.
$Scripter.Options.ScriptBatchTerminator=$true
$Scripter.Options.NoCommandTerminator=$false
see this thread for an example on teh same question:
http://www.sqlservercentral.com/Forums/Topic996028-1351-1.aspx#bm996236
April 26, 2013 at 10:20 am
also check out this neat trick:http://sev17.com/2011/10/22/gaining-sql-server-sysadmin-access/
basically it's a model for a SQLCMD script which would add a new sysadmin user, because it is able to run as the built in...
April 26, 2013 at 9:59 am
it's just the wrong provider;
jet is for 32 bit Access/Excel, and not for SQL Servers.
here's your command adapted, and also one I know works for sure:
--query directly without open rowset:
SELECT...
April 25, 2013 at 11:25 am
adonetok (4/25/2013)
There is a table Order in which one filed [Notes] as text data type.How to search a partial text such as "ordered on 10/02/2012" in the field [Notes]?
convert to...
April 25, 2013 at 10:43 am
collation.
for case insensitive searches, some high ascii characters are treated as the same character as certain low ascii.
you can use an explicit binary collation, for example, which would seperate teh...
April 25, 2013 at 9:45 am
remove the SET IDENTITY_INSER
%T command. since it is not valid/has no effect with BULK INSERT statements.
instead, as identified, you need to add KEEPIDENTITY to your BULK INSERT command:
BULK
INSERT ABC
FROM...
April 25, 2013 at 8:09 am
Viewing 15 posts - 3,571 through 3,585 (of 13,462 total)