Viewing 15 posts - 3,571 through 3,585 (of 13,469 total)
In Oracle, Each Object can have double quotes. that means the table can have quotes, and it's column names can have quotes...but you can't wrap them all in-one..they each get...
May 1, 2013 at 7:39 am
You are looking for the BREAK keyword.
a simple example to break out of what would otherwise be an endless loop:
--RAISERROR immediate message
--print error immediately in batch
DECLARE
@i ...
May 1, 2013 at 6:33 am
you can join the table against itself, and use the modulus operator to limit it to the "odd" rows for the first value, leaving the second value as the date-ish...
April 29, 2013 at 1:56 pm
excellent! glad we could guide you in the right direction; I for one am very glad you were able to solve this with just a gentle nudge!
April 29, 2013 at 1:01 pm
ouch; remote-second hand assistance is tough,
I feel for you and what headaches are involved in getting your information once-removed from the client.
April 29, 2013 at 12:59 pm
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
Viewing 15 posts - 3,571 through 3,585 (of 13,469 total)