Viewing 15 posts - 4,066 through 4,080 (of 13,469 total)
the purpose of encryption is to not store the data unencrypted at all, storing it both ways makes sense during the testing/development phase, but not after you've proved the encryption...
February 1, 2013 at 6:35 am
if you've gotta do it via TSQL, instead of stepping out via SMO to get it , i've spent a lot of time refining a few stored procedures to do...
January 31, 2013 at 11:18 am
i thought you had to get the actual counts from sys.indexes; since the index must have a heap/PK index for every table, teh row counts are materialized exactly correct there:
SELECT...
January 31, 2013 at 9:01 am
lg123 (1/31/2013)
One of the columns was nvarchar2(255). How do I successfully transport such kind of tables from SQL Server to Oracle? Please suggest.
well there's only two solutions:
1. modify the Oracle...
January 31, 2013 at 8:28 am
relaying is sending emails to addresses that the SMTP server doesn't actually administrate itself.(ie gmail.com forwarding to yahoo.com)
Also remember there are two kinds of relaying:
anonymous relaying and relaying for an...
January 31, 2013 at 8:20 am
what kind of errors did you see int eh log? exact error messages help us diangnose a lot better;
if there were no messages at all,
i think you'll need to...
January 30, 2013 at 1:40 pm
check to see fi there is a specific error coming back from the SMTP server:
it sounds like the email goes out but is never received;
it might be no relaying allowed,...
January 30, 2013 at 1:13 pm
assuming the Oracle view is updatable because it has no aggregates or calculated columns, it's exactly the same as any other insert.
if it's not, you have to insert into the...
January 29, 2013 at 9:57 am
this CLR code is really nice, and something i have on my dev server:
for the expression itself, it looks very close to the format for an ip address;
take a look...
January 29, 2013 at 9:31 am
an index seek would only occur if it was looking for one value, or a range of values that were consecutive; otherwise it has to scan the index, right?
so WHERE...
January 29, 2013 at 9:17 am
Access has linked servers?
i think i just read your question wrong.
If you've correctly set up an Oracle Linked server, you can first use sp_tables_ex MyOracle and you should see a...
January 29, 2013 at 9:08 am
someone else does the same crap for anything barcode related because he made some plug in he's selling; annoying, to say the least, I agree.
January 29, 2013 at 8:27 am
not with a mirror; the mirror is a read only copy of whatever is in production, right?
It's been a while since i did this, but i think you...
January 29, 2013 at 7:27 am
ok here's one way to do it with SQL2000:
declare @sql_handle-2 binary(20),@spid smallint;
declare c1 cursor for select sql_handle,spid from master..sysprocesses where spid >50;
open c1;
fetch next from c1 into @sql_handle-2,@spid;
while (@@FETCH_STATUS...
January 29, 2013 at 6:47 am
wow SQL 2000;
edit : whoops this is clearly for 2005 or above; let me look again in my snippets; i know i have something
I have this proc saved in...
January 29, 2013 at 6:32 am
Viewing 15 posts - 4,066 through 4,080 (of 13,469 total)