Strange (for me) email hack, need advice please

Sorry if this isn't the right place to post this question but I need help please!

A friend forwarded an email to me from his iPad, request information on the content of the e-mail.  The title of the e-mail with the phrase "Bill and W - 9.  I said to my friend with this question: "what is the amount was discussed.  A few minutes later, I got a response: "$6 500 and he should be sent to their bank account, I will send you the info from the Bank before leaving town tonight." Please confirm if the info of the Bank should be sent.  I checked to see that the email from sound, it was, so my first thought was that it responded to our e-mail, thinking it was another.  I responded saying "hey I think you sent me this by mistake.  Shortly after, I got a response that was obviously false.  When finally, I talked with him, my friend was nothing achieved responses by e-mail I sent.  Then, someone broke in and took his identity by email in an obvious scam.  I've not heard of this and have no idea how it was done.

My Macbook Air is only used at home and by me only.  Should I be concerned about the safety of my data or e-mail?

How can I tell my friend to check its security online?

Thanks in advance,

Jim

It is possible that your friend has had some malware installed and it would be prudent to check, but there are other explanations that do not involve them.

Email from: and Reply-to: addresses are easy to fake:

https://en.Wikipedia.org/wiki/Email_spoofing

and unless you know what you're looking for, it is not easy to spot counterfeits.

The emails themselves are not harmful, it is that they deceive the recipient actually that's the problem.

C.

Tags: Mac OS & System Software

Similar Questions

  • Inspiron s 660: hard disk failure. Need advice please.

    Long story short my sister gave me a s Inspiron 660 she received as a gift a few years back (legitimate).  She said that was no longer working and I could.  I suspected a faulty hard drive and after several diagnostic tests later confirmed the WD Blue crashed the original; complete failure. Now, here's where I need advice:

    1. when it has received, it came not with a physical disk from the Windows 8.0 operating system.  It was pre-installed and then upgraded through its work of departmental to 8.1 it.

    2. I can't access the code of Windows because it is in the BIOS.

    3. I have a hard drive to work with Windows 7 installed and tried hooking laptop to see if he should realize that he was a long shot at best.  As you have probably concluded he was not recognized.

    4. I thought wiping one of my hard drives and do a clean install of Windows 10.

    Question: With a new hard drive (or possibly an SSD) would work #4 or I still have problems with the BIOS and Windows embedded product code?

    Question: What do you suggest I should try?  It's a nice little system and everything is clean and stable.  I have someone who needs a system, but can't afford it, and I thought I'd give something that would meet its needs.

    Thank you.

    ROUTE29

    Re: 4. I thought wiping one of my hard drives and do a clean install of Windows 10.

    Yes, it should work, but to do this, you must either buy an OEM copy of W-10, which has its own product key.

    http://www.BestBuy.com/site/Microsoft-Windows-10-home-64-bit-Windows/4423102.p?skuId=4423102

    https://softwarekeep.com/Microsoft-Windows-10-Home-Edition-32-bit.html?gclid=CNXh5ev3wc8CFQGSaQod5A4LMQ

    The upgraded version free of W-10, Windows 8, 8.1, 7 ended July 26.

    Bev.

  • Epson stylus rx 520 when I try and print it from the internet only prints photo on the left side, how can I set for return to A4 portrait advice please.

    I have photo stylus epson rx 520 when I try and print from the internet he prints only on the left side, how do I set back to A4 portrait advice please.  I have windows 8.1

    Petersrex

    You the best solution is to contact Epson.  We don't support Microsoft products on this site and they know their best products.

  • Try to add a common identifier with a bunch of lines in my query... Need advice please

    Hello

    This is the structure of the table as I / p for my request.

    I / P

    with temp1 as

    (select 1 trans_id, currency "USD", amount of 1500, 'B', 'www' counterpart of the double orientation_buysell)

    Union

    Select 2, 'USD', 500, the of ', 'www' from dual

    Union

    Select 3, 'USD', 1000, the of ', 'www' from dual

    Union

    Select option 4, "SGD", 2500, 'B', 'xyz' from dual

    Union

    Select 5, "SGD", 500, the of ', 'xyz' from dual

    Union

    Select 6, "SGD", 1000, the of ', 'xyz' from dual

    Union

    Select 7, "SGD", 1000, the of ', 'xyz' from dual

    Union

    Select 8, "JPY", 3000, 'B', 'yyy' from dual

    Union

    Select 9, "JPY", 2000, the of ', 'yyy' from dual

    Union

    Select 10, "JPY", 500, the of ', 'yyy' from dual

    Union

    Select 11, "JPY", 500, the of ', 'yyy' from dual

    )

    Select * from temp1;

    O/P should be like smthing below.

    Alert_id start_trans_id return of orientation_buysell of end_trans_id currency

    1                  1                      2              USD                       B      www

    1                  1                      3              USD                       B      www

    2                  4                      5              SGD                       B      xyz

    2                  4                      6              SGD                       B      xyz

    2                  4                      7              SGD                       B      xyz

    3                  8                      9              JPY                        B      yyy

    3                  8                      10            JPY                        B      yyy

    3                  8                      11            JPY                        B      yyy

    So I used under query, I got all my requirement except Alert_id, could you please help me how to generate this alert ID.

    Query

    Select a.trans_id Start_trans_id, b.trans_id End_trans_id, a.currency, a.orientation_buysell, a.counterparty

    of temp1 one

    inner join

    b Temp1

    On a.counterparty = b.counterparty

    where a.orientation_buysell = 'B '.

    and b.orientation_buysell = s"

    order of a.trans_id, b.trans_id;

    Actually these all the data I need to choose from a table (here temp1), its data according to my requirement(o/p) and also need to add a new column "Alert_id" which must be fulfilled that I showed in the o/p and finally insert in a particular ALERT Table.

    I don't get this alert id concept in my query, how to make this a generic.

    Any help would be really appreciated. Thank you

    Hello

    Thus,.

    all lines with the lowest value of trans_id need alert_id = 1.

    all lines with the value the lower 2nd trans_id need alert_id = 2,

    all lines with the value the lower 3rd trans_id need alert_id = 3,

    ...

    all lines with the nth lowest value of trans_id need alert_id = N.

    This sounds like a job for the analytical DENSE_RANK function:

    Select

    DENSE_RANK () OVER (ORDER BY a.trans_id) AS alert_id,-* NEW *.

    a.trans_id Start_trans_id, b.trans_id End_trans_id, a.currency, a.orientation_buysell, a.counterparty

    of temp1 one

    inner join

    b Temp1

    On a.counterparty = b.counterparty

    where a.orientation_buysell = 'B '.

    and b.orientation_buysell = s"

    order of a.trans_id, b.trans_id;

    I added 1 line of code at the beginning; Otherwise, it's exactly what you've posted.

  • Trying to get Essbase Client 11.1.2.3 for Linux 32 bit, need help please

    Hello

    I'm running a 64-bit RedHat Enterprise Linux 6.4 system and have an application that requires that the Client of Essbase 32-bit libraries to connect to a server instance Essbase 11.1.2 11.1.2.X.

    Go by reading the messages of the forum for the past couple days, I came to understand that Oracle Essbase 11.1.2 no longer ships a client Linux as a separate assembly, you must therefore install the complete Essbase server and then extract the files of the client out of that use.  So I'll try to get the correct bundle of downloaded files to the same get the installer to launch correctly so I can choose a minimum installation, including the components of the client, but I can't get correct zip files, I almost, but there is always some missing, and the instructions I found seem to refer to 11.1.1.X versions which have changed a bit in the 11.1.2.X version.

    Can someone please help me understand what still me get installation running and how to extract the client libraries?

    So far I have downloaded:

    2073792430 22 April 11:43 Apps-11123 - linux32.zip

    2440713397 22 Apr 11:46 ClientInstallers - 11123.zip

    554953827 apr 22 11:47 Essbase-11123 - linux32.zip

    171726540 20 June 09:08 FinancialManagementAnalytics-11123 - linux32.zip

    1053291166 22 Apr 11:52 Foundation-11123-linux32 - Part1.zip

    1603812256 22 Apr 11:53 Foundation-11123-linux32 - Part2.zip

    939688909 22 Apr 11:53 Foundation-11123-linux32 - Part4.zip

    1597577101 22 Apr 11:55 Foundation-11123 - Part3.zip

    1801831469 22 Apr 12:01 OSH-11123 - linux32.zip

    366584941 22 Apr 12:04 RA-11123 - linux32.zip

    BUT I still have the following missing assemblies, that I can't take into account:

    EPMINS-01001: one or more checks of preinstallation failed. Correct the errors before continuing with the installation.

    See assemblies: / home/ntruhan/Downloads/essbase/assemblies/biplus_product_reporting_client... Not exist

    Failed!

    EPMINS-01084: Assembly for linux32 platform is used

    Failed!

    EPMINS-01084: Assembly for linux32 platform is used

    Failed! EPMINS-01084: Assembly for linux32 platform is used

    Failed! EPMINS-01084: Assembly for linux32 platform is used

    Failed! EPMINS-01084: Assembly for linux32 platform is used

    / Home/ntruhan/downloads/Essbase/Assemblies/hfm_services... Not exist

    / Home/ntruhan/downloads/Essbase/Assemblies/dbclient64... Not exist

    Failed!

    EPMINS-01084: Assembly for linux32 platform is used

    Failed!

    EPMINS-01084: Assembly for linux32 platform is used

    / Home/ntruhan/downloads/Essbase/Assemblies/hsf_server... Not exist

    / Home/ntruhan/downloads/Essbase/Assemblies/dbclient32... Not exist

    / Home/ntruhan/downloads/Essbase/Assemblies/FDM... Not exist

    Failed!

    EPMINS-01084: Assembly for linux32 platform is used

    Failed!

    EPMINS-01084: Assembly for linux32 platform is used

    / Home/ntruhan/downloads/Essbase/Assemblies/bpm_architect_services... Not exist

    / Home/ntruhan/downloads/Essbase/Assemblies/hsf_webapp... Not exist

    I'll go through the list of entries, but the only references I've seen so far have been for Windows downloads and it's linux and then Assembly linux32 messages there, but I need since I need right 32-bit client libraries?

    Can someone shed light on this adventure in the installation of this since all of the installation instructions I could see are for an older version conditioned differently?

    Thank you in advance,

    Nathan

    The best place to download files of EPM is compared to the clouds of software Oracle delivery - https://edelivery.oracle.com

    The files that you need will be sub - "Oracle Enterprise Performance Management System (11.1.2.3.0) Media Pack for Linux x 86.

    The files required for Essbase are:

    The system of EMP 11.1.2.3.0 for Linux x 86 Part 1 version

    The system of EMP 11.1.2.3.0 for Linux x 86 Part 2 version

    EPM System Release 11.1.2.3.0 part 3

    The system of EMP 11.1.2.3.0 for Linux x 86 part 6 version

    See you soon

    John

    http://John-Goodwin.blogspot.com/

  • Need complex need advice please

    Hi I have a table as below:
    SITE_ID_NBR     DIRECTION     START_DATE     START_DAY     END_DATE     END_DAY     TRAFFIC_SAMPLE_ID     BIN_DATA_ID     END_INTV_TIME     BIN_1_DATA     RN     CNT     WEEKEND_FLAG
                                                                
    97809011     1     110308     Monday     111008     Monday     143302     114638     1400     4     1     169     Y
    97809011     1     110308     Monday     111008     Monday     143302     114639     1500     4     2     169     Y
    97809011     1     110308     Monday     111008     Monday     143302     114640     1600     2     3     169     Y
    97809011     1     110308     Monday     111008     Monday     143302     114641     1700     1     4     169     Y
    97809011     1     110308     Monday     111008     Monday     143302     114642     1800     6     5     169     Y
    97809011     1     110308     Monday     111008     Monday     143302     114643     1900     2     6     169     Y
    97809011     1     110308     Monday     111008     Monday     143302     114644     2000     1     7     169     Y
    97809011     1     110308     Monday     111008     Monday     143302     114645     2100     1     8     169     Y
    97809011     1     110308     Monday     111008     Monday     143302     114646     2200     1     9     169     Y
    97809011     1     110308     Monday     111008     Monday     143302     114647     2300     0     10     169     Y
    97809011     1     110308     Monday     111008     Monday     143302     114648     2400     0     11     169     Y
    97809011     1     110308     Monday     111008     Monday     143302     114649     100     0     12     169     Y
    97809011     1     110308     Monday     111008     Monday     143302     114650     200     0     13     169     Y
    97809011     1     110308     Monday     111008     Monday     143302     114651     300     0     14     169     Y
    97809011     1     110308     Monday     111008     Monday     143302     114652     400     0     15     169     Y
    97809011     1     110308     Monday     111008     Monday     143302     114653     500     0     16     169     Y
    97809011     1     110308     Monday     111008     Monday     143302     114654     600     0     17     169     Y
    97809011     1     110308     Monday     111008     Monday     143302     114655     700     0     18     169     Y
    97809011     1     110308     Monday     111008     Monday     143302     114656     800     1     19     169     Y
    97809011     1     110308     Monday     111008     Monday     143302     114657     900     4     20     169     Y
    97809011     1     110308     Monday     111008     Monday     143302     114658     1000     0     21     169     Y
    97809011     1     110308     Monday     111008     Monday     143302     114659     1100     3     22     169     Y
    97809011     1     110308     Monday     111008     Monday     143302     114660     1200     6     23     169     Y
    97809011     1     110308     Monday     111008     Monday     143302     114661     1300     5     24     169     Y
    97809011     1     110308     Monday     111008     Monday     143302     114662     1400     3     25     169     Y
    97809011     1     110308     Monday     111008     Monday     143302     114663     1500     5     26     169     Y
    97809011     1     110308     Monday     111008     Monday     143302     114664     1600     3     27     169     Y
    97809011     1     110308     Monday     111008     Monday     143302     114665     1700     1     28     169     Y
    97809011     1     110308     Monday     111008     Monday     143302     114666     1800     4     29     169     Y
    97809011     1     110308     Monday     111008     Monday     143302     114667     1900     1     30     169     Y
    97809011     1     110308     Monday     111008     Monday     143302     114668     2000     2     31     169     Y
    97809011     1     110308     Monday     111008     Monday     143302     114669     2100     1     32     169     Y
    97809011     1     110308     Monday     111008     Monday     143302     114670     2200     0     33     169     Y
    97809011     1     110308     Monday     111008     Monday     143302     114671     2300     1     34     169     Y
    97809011     1     110308     Monday     111008     Monday     143302     114672     2400     2     35     169     Y
    97809011     1     110308     Monday     111008     Monday     143302     114673     100     1     36     169     Y
    97809011     1     110308     Monday     111008     Monday     143302     114674     200     2     37     169     Y
    97809011     1     110308     Monday     111008     Monday     143302     114675     300     0     38     169     Y
    97809011     1     110308     Monday     111008     Monday     143302     114676     400     0     39     169     Y
    97809011     1     110308     Monday     111008     Monday     143302     114677     500     0     40     169     Y
    97809011     1     110308     Monday     111008     Monday     143302     114678     600     0     41     169     Y
    97809011     1     110308     Monday     111008     Monday     143302     114679     700     0     42     169     Y
    97809011     1     110308     Monday     111008     Monday     143302     114680     800     1     43     169     Y
    97809011     1     110308     Monday     111008     Monday     143302     114681     900     4     44     169     Y
    97809011     1     110308     Monday     111008     Monday     143302     114682     1000     0     45     169     Y
    97809011     1     110308     Monday     111008     Monday     143302     114683     1100     0     46     169     Y
    97809011     1     110308     Monday     111008     Monday     143302     114684     1200     4     47     169     Y
    97809011     1     110308     Monday     111008     Monday     143302     114685     1300     5     48     169     Y
    97809011     1     110308     Monday     111008     Monday     143302     114686     1400     4     49     169     Y
    97809011     1     110308     Monday     111008     Monday     143302     114687     1500     8     50     169     Y
    97809011     1     110308     Monday     111008     Monday     143302     114688     1600     3     51     169     Y
    97809011     1     110308     Monday     111008     Monday     143302     114689     1700     4     52     169     Y
    97809011     1     110308     Monday     111008     Monday     143302     114690     1800     4     53     169     Y
    97809011     1     110308     Monday     111008     Monday     143302     114691     1900     0     54     169     Y
    97809011     1     110308     Monday     111008     Monday     143302     114692     2000     0     55     169     Y
    97809011     1     110308     Monday     111008     Monday     143302     114693     2100     1     56     169     Y
    97809011     1     110308     Monday     111008     Monday     143302     114694     2200     1     57     169     Y
    97809011     1     110308     Monday     111008     Monday     143302     114695     2300     0     58     169     Y
    97809011     1     110308     Monday     111008     Monday     143302     114696     2400     0     59     169     Y
    97809011     1     110308     Monday     111008     Monday     143302     114697     100     3     60     169     Y
    97809011     1     110308     Monday     111008     Monday     143302     114698     200     0     61     169     Y
    97809011     1     110308     Monday     111008     Monday     143302     114699     300     1     62     169     Y
    97809011     1     110308     Monday     111008     Monday     143302     114700     400     1     63     169     Y
    97809011     1     110308     Monday     111008     Monday     143302     114701     500     1     64     169     Y
    97809011     1     110308     Monday     111008     Monday     143302     114702     600     0     65     169     Y
    97809011     1     110308     Monday     111008     Monday     143302     114703     700     0     66     169     Y
    97809011     1     110308     Monday     111008     Monday     143302     114704     800     2     67     169     Y
    97809011     1     110308     Monday     111008     Monday     143302     114705     900     2     68     169     Y
    97809011     1     110308     Monday     111008     Monday     143302     114706     1000     0     69     169     Y
    97809011     1     110308     Monday     111008     Monday     143302     114707     1100     0     70     169     Y
    97809011     1     110308     Monday     111008     Monday     143302     114708     1200     0     71     169     Y
    97809011     1     110308     Monday     111008     Monday     143302     114709     1300     1     72     169     Y
    97809011     1     110308     Monday     111008     Monday     143302     114710     1400     0     73     169     Y
    97809011     1     110308     Monday     111008     Monday     143302     114711     1500     0     74     169     Y
    97809011     1     110308     Monday     111008     Monday     143302     114712     1600     0     75     169     Y
    97809011     1     110308     Monday     111008     Monday     143302     114713     1700     1     76     169     Y
    97809011     1     110308     Monday     111008     Monday     143302     114714     1800     1     77     169     Y
    97809011     1     110308     Monday     111008     Monday     143302     114715     1900     3     78     169     Y
    97809011     1     110308     Monday     111008     Monday     143302     114716     2000     2     79     169     Y
    97809011     1     110308     Monday     111008     Monday     143302     114717     2100     0     80     169     Y
    97809011     1     110308     Monday     111008     Monday     143302     114718     2200     0     81     169     Y
    97809011     1     110308     Monday     111008     Monday     143302     114719     2300     1     82     169     Y
    97809011     1     110308     Monday     111008     Monday     143302     114720     2400     2     83     169     Y
    97809011     1     110308     Monday     111008     Monday     143302     114721     100     5     84     169     Y
    97809011     1     110308     Monday     111008     Monday     143302     114722     200     5     85     169     Y
    97809011     1     110308     Monday     111008     Monday     143302     114723     300     3     86     169     Y
    97809011     1     110308     Monday     111008     Monday     143302     114724     400     0     87     169     Y
    97809011     1     110308     Monday     111008     Monday     143302     114725     500     1     88     169     Y
    97809011     1     110308     Monday     111008     Monday     143302     114726     600     1     89     169     Y
    97809011     1     110308     Monday     111008     Monday     143302     114727     700     0     90     169     Y
    97809011     1     110308     Monday     111008     Monday     143302     114728     800     2     91     169     Y
    97809011     1     110308     Monday     111008     Monday     143302     114729     900     0     92     169     Y
    97809011     1     110308     Monday     111008     Monday     143302     114730     1000     0     93     169     Y
    97809011     1     110308     Monday     111008     Monday     143302     114731     1100     3     94     169     Y
    97809011     1     110308     Monday     111008     Monday     143302     114732     1200     1     95     169     Y
    97809011     1     110308     Monday     111008     Monday     143302     114733     1300     1     96     169     Y
    97809011     1     110308     Monday     111008     Monday     143302     114734     1400     0     97     169     Y
    97809011     1     110308     Monday     111008     Monday     143302     114735     1500     0     98     169     Y
    97809011     1     110308     Monday     111008     Monday     143302     114736     1600     2     99     169     Y
    97809011     1     110308     Monday     111008     Monday     143302     114737     1700     0     100     169     Y
    97809011     1     110308     Monday     111008     Monday     143302     114738     1800     2     101     169     Y
    97809011     1     110308     Monday     111008     Monday     143302     114739     1900     1     102     169     Y
    97809011     1     110308     Monday     111008     Monday     143302     114740     2000     3     103     169     Y
    97809011     1     110308     Monday     111008     Monday     143302     114741     2100     0     104     169     Y
    97809011     1     110308     Monday     111008     Monday     143302     114742     2200     1     105     169     Y
    97809011     1     110308     Monday     111008     Monday     143302     114743     2300     0     106     169     Y
    97809011     1     110308     Monday     111008     Monday     143302     114744     2400     0     107     169     Y
    97809011     1     110308     Monday     111008     Monday     143302     114745     100     0     108     169     Y
    97809011     1     110308     Monday     111008     Monday     143302     114746     200     2     109     169     Y
    97809011     1     110308     Monday     111008     Monday     143302     114747     300     0     110     169     Y
    97809011     1     110308     Monday     111008     Monday     143302     114748     400     0     111     169     Y
    97809011     1     110308     Monday     111008     Monday     143302     114749     500     1     112     169     Y
    97809011     1     110308     Monday     111008     Monday     143302     114750     600     2     113     169     Y
    97809011     1     110308     Monday     111008     Monday     143302     114751     700     0     114     169     Y
    97809011     1     110308     Monday     111008     Monday     143302     114752     800     0     115     169     Y
    97809011     1     110308     Monday     111008     Monday     143302     114753     900     0     116     169     Y
    97809011     1     110308     Monday     111008     Monday     143302     114754     1000     0     117     169     Y
    97809011     1     110308     Monday     111008     Monday     143302     114755     1100     0     118     169     Y
    97809011     1     110308     Monday     111008     Monday     143302     114756     1200     1     119     169     Y
    97809011     1     110308     Monday     111008     Monday     143302     114757     1300     1     120     169     Y
    97809011     1     110308     Monday     111008     Monday     143302     114758     1400     0     121     169     Y
    97809011     1     110308     Monday     111008     Monday     143302     114759     1500     0     122     169     Y
    97809011     1     110308     Monday     111008     Monday     143302     114760     1600     1     123     169     Y
    97809011     1     110308     Monday     111008     Monday     143302     114761     1700     1     124     169     Y
    97809011     1     110308     Monday     111008     Monday     143302     114762     1800     0     125     169     Y
    97809011     1     110308     Monday     111008     Monday     143302     114763     1900     0     126     169     Y
    97809011     1     110308     Monday     111008     Monday     143302     114764     2000     0     127     169     Y
    97809011     1     110308     Monday     111008     Monday     143302     114765     2100     0     128     169     Y
    97809011     1     110308     Monday     111008     Monday     143302     114766     2200     0     129     169     Y
    97809011     1     110308     Monday     111008     Monday     143302     114767     2300     0     130     169     Y
    97809011     1     110308     Monday     111008     Monday     143302     114768     2400     0     131     169     Y
    97809011     1     110308     Monday     111008     Monday     143302     114769     100     0     132     169     Y
    97809011     1     110308     Monday     111008     Monday     143302     114770     200     0     133     169     Y
    97809011     1     110308     Monday     111008     Monday     143302     114771     300     1     134     169     Y
    97809011     1     110308     Monday     111008     Monday     143302     114772     400     1     135     169     Y
    97809011     1     110308     Monday     111008     Monday     143302     114773     500     0     136     169     Y
    97809011     1     110308     Monday     111008     Monday     143302     114774     600     0     137     169     Y
    97809011     1     110308     Monday     111008     Monday     143302     114775     700     0     138     169     Y
    97809011     1     110308     Monday     111008     Monday     143302     114776     800     0     139     169     Y
    97809011     1     110308     Monday     111008     Monday     143302     114777     900     0     140     169     Y
    97809011     1     110308     Monday     111008     Monday     143302     114778     1000     0     141     169     Y
    97809011     1     110308     Monday     111008     Monday     143302     114779     1100     2     142     169     Y
    97809011     1     110308     Monday     111008     Monday     143302     114780     1200     0     143     169     Y
    97809011     1     110308     Monday     111008     Monday     143302     114781     1300     0     144     169     Y
    97809011     1     110308     Monday     111008     Monday     143302     114782     1400     1     145     169     Y
    97809011     1     110308     Monday     111008     Monday     143302     114783     1500     1     146     169     Y
    97809011     1     110308     Monday     111008     Monday     143302     114784     1600     1     147     169     Y
    97809011     1     110308     Monday     111008     Monday     143302     114785     1700     0     148     169     Y
    97809011     1     110308     Monday     111008     Monday     143302     114786     1800     0     149     169     Y
    97809011     1     110308     Monday     111008     Monday     143302     114787     1900     1     150     169     Y
    97809011     1     110308     Monday     111008     Monday     143302     114788     2000     2     151     169     Y
    97809011     1     110308     Monday     111008     Monday     143302     114789     2100     1     152     169     Y
    97809011     1     110308     Monday     111008     Monday     143302     114790     2200     0     153     169     Y
    97809011     1     110308     Monday     111008     Monday     143302     114791     2300     0     154     169     Y
    97809011     1     110308     Monday     111008     Monday     143302     114792     2400     0     155     169     Y
    97809011     1     110308     Monday     111008     Monday     143302     114793     100     0     156     169     Y
    97809011     1     110308     Monday     111008     Monday     143302     114794     200     0     157     169     Y
    97809011     1     110308     Monday     111008     Monday     143302     114795     300     0     158     169     Y
    97809011     1     110308     Monday     111008     Monday     143302     114796     400     0     159     169     Y
    97809011     1     110308     Monday     111008     Monday     143302     114797     500     0     160     169     Y
    97809011     1     110308     Monday     111008     Monday     143302     114798     600     0     161     169     Y
    97809011     1     110308     Monday     111008     Monday     143302     114799     700     0     162     169     Y
    97809011     1     110308     Monday     111008     Monday     143302     114800     800     1     163     169     Y
    97809011     1     110308     Monday     111008     Monday     143302     114801     900     1     164     169     Y
    97809011     1     110308     Monday     111008     Monday     143302     114802     1000     2     165     169     Y
    97809011     1     110308     Monday     111008     Monday     143302     114803     1100     2     166     169     Y
    97809011     1     110308     Monday     111008     Monday     143302     114804     1200     2     167     169     Y
    97809011     1     110308     Monday     111008     Monday     143302     114805     1300     3     168     169     Y
    I have start and end dates. There's a reocrd for each hour of the day. In the above example, the START DATE is a Monday and so the first 24 recordings belong to Monday and the next 24 belong to Tuesday... and 24 last belong to the following MONDAY. I need help in creating a column where I can assign each record a day, for example in the case of the table above the Chronogram of 25-48 should be TUESDAY and 49-72 as Wednesday... Can any help me me or advice on that?

    Thank you

    How you order these documents? The TRAFFIC_SAMPLE_ID can be used for this? In this case, you could use something similar to this

    untested due to lack of instructions insert/create

    select v.*,
            to_char(to_date(start_date,'mmddrr') + trunc(rn/24), 'Day')
    from
      (select t.*,
           row_number() over (partition by SITE_ID_NBR, DIRECTION, START_DATE order by  TRAFFIC_SAMPLE_ID) rn
       TRAFFIC_SAMPLE_ID) rn
       from myTable t
      ) v
    

    The details of the explanation of the solution were in correspondence with the details of the level of the explanation of the issue.

  • HP envy laptop 17 k20lna: need advice please wifi connections

    Can Hi anyone help me please

    my laptop sees only 2 GB wifi to connect too but I'm sure it should be to see 5g

    I was updated for windows 10 years ago, but even when I bought it he saw that 2 g

    all my other PCs phones tv etc see all 2g and 5g can someone help me please

    Thank you very much

    PEP

    Hello:

    Most of the laptops HP consumer do not come with dual-band wireless network adapters.

    The best way to check if your laptop has a double-band Wireless-N card or single band was the following:

    Go to Device Manager and click to expand the category of device of the network adapters.

    You will see the names and model numbers of wireless and ethernet cards.

    If the suffix of the model of your laptop wireless network card ends in b/g/n, it is only a map of the only band (2.4 Ghz).

    If it ends in a/b/g/n or a/g/n, then it is a wireless card dual-band (2.4/5.0 HGz).

  • Need advice please as soon as possible

    Hello

    Big problem:

    My Dell OPTIPLEX 780 died today (sudden) I did NOT save the files recent\ly and need them.

    Need a new PC and an external anchor ASAP system

    My mother reached 100 years Thursday 20 OCT. And it's all on HD to the DEAD system that works as a secondary.

    I need the files and something reliable. I currently use a dell vostra LT, (which has been a big disappointment) and an E520 XPS (windows XP SP 3)

    I am in Toronto and because the physics of severe bone disease'm housebound.

    Because time is the problem can anyone suggest a DELL PC and external sytstem berth which comes FAST and reliable?

    Thank you!

    Hi _XtanyaX_,

    You must contact Dell Canada to place an order. It would take some time for the order to be delivered to you. Your best bet would be to look online and choose one that is configured and the fast ships. The other option would be to go to a store like of like Best buy, Wal-Mart, etc and buy one on site.

    You will need to take your pc to a local computer store and see if they can clone the hard disk to retrieve the information.

    http://www.Dell.ca/index.htm

  • Windows 7 Pro - cannot install PhotoMagic - need advice please!

    Just got a new computer with Windows 7 Professional. Have a CD of Micrografx of probably 1988 and only use PhotoMagic 6. When I went to install refused and when I went to the compatibility mode, it does not go to the CD Player for a program. Can someone give me advice?

    You can copy the CD software configuration in your Documents folder?

    Have you tried right clicking on the shortcut to the program or the .exe and select "Run As Administrator"?

    How to troubleshoot a problem by performing a clean boot in Windows Vista or in Windows 7
    http://support.Microsoft.com/default.aspx/KB/929135

    Have you tried to clean your Temp folder, you can do this by typing folder in the Start Menu RUN box.  This will open your Temp folder, there, you can remove all Windows will allow you to do.

    It may be necessary to show both hidden and system files and also uncheck 'Hide known file types' in Control Panel / folder Options / view to navigate to the mentioned location of Temp.

    Make older programs in this version of Windows (Windows 7)
    http://Windows.Microsoft.com/en-us/Windows7/make-older-programs-run-in-this-version-of-Windows

    Help with Windows 7 compatibility issues
    http://Windows.Microsoft.com/en-us/Windows7/help/compatibility

    Windows 7 Compatibility Center
    http://www.Microsoft.com/Windows/compatibility/Windows-7/en-us/default.aspx

    This could become you go if all else fails, and it's all free.

    Windows Virtual PC
    Download Windows XP Mode
    http://www.Microsoft.com/Windows/Virtual-PC/Download.aspx

    Windows XP Mode (Windows 7 only, but not one of the Home versions) "you are not eligible to download Windows XP Mode. You must have Windows 7 Professional, enterprise or full to run Windows XP Mode."

  • hosts mixed esx 3.5 and older new vsphere with vcenter 4.1 esx hosts. Need advice please.

    Hello, I have an existing the vcenter server install managing two esx 3.5 hosts. The vcenter is version 2.5.0.x. I want to manage my new hosts of vsphere 4.1 esxi through the vcenter. I would check that if I improve my vcenter 2.5.0 for the last version vcenter Server required for the 4.1 that I will be able to manage my old esx 3.5 hosts? Will be an upgrade inplace vcenter 2.5.0.x support now the license server in place or I will have to manually install this after? Thanks for any info. Doug Dorbuck

    You can mange ESX 3.x host with vCenter 4.x - you can't manage ESX 4.x, vCenter 2.x hosts

    I think that in a place of upgrade will keep the license server - otherwise you will need to reinstall the server-licensing

  • New to virtualization need advice please

    Hello community VMWARE.

    I'll make as clear as possible, latetly at work (Local ISP) hosting game servers for our customers on servers dedicated small (Linux-based), I started as a cpu P4 with 512 MB Ram and nothing fancy, I hosted multiplayer games online, on these small physical servers games were running great and no problems so far , but with 5-6 servers of game so far these small servers are not manageable and difficult to develop, so put these ATX Desktop case in the server room takes too much space and it is not wise for future enlargement, so my boss asked me to virtualize, there has already been a few virtualized servers, it uses (vmware infrastructure web) He wanted to show me how effective it can be, in his web browser, he created a virtual machine and installed linux on it distribution and given 1 vCpu and 1 GB of vRam and I organized a game about this server, he is actually done as good as my physical servers (if not better).

    Now, the dilemma is that my company will order a powerful double nice (Xeon Quad processor cores) with a large amount of Ram (8 or 12 GB order is not confirmed yet) this server will be dedicated to hosting game servers, and of course I'll have to get rid of all these small Desktop P4 servers and migrate to this new which gives the fact that some game servers runs on linux and other windows only, then virtualization is a must!

    As mentioned before, my boss has a vamware product that it manages from a web interface (web vmware infrastructure), I want something similar I will be be split this power phisycal server into multiple virtual machines, I used Vmware workstation before and it is quite nice but in this case, I want something more professional and efficient and which balances the processors between the virtual machines in an effective way because the game servers relies more on the processor.

    I'm looking for mainly:

    -A virtualization platform that sits directly on the server with no OS underliying.

    -Controlled via the web interface (if it is possible, but not neccesarly).

    -Better management of performance for processors

    -Can run multiple operating systems (Linux and Windows) probably up to 5 instances of OS.

    Which vmware product can fit the most? After watching and surf on your website, I thought maybe? ESXi? vSphere? VMware vcenter server or?

    Please advise and thank you.

    It comes with the web interface, as well as the client interface installed. With purchase vcenter you can manage all hosts in a single screen and with additional features like vmware ha, vmotion, and etc. If you shared storage, and depending on the version you purchase.

    looking for essential plus the package, it comes at a very low prices and with a maximum power of 3 guests 6cpu bundled license and 1 vcenter.

  • Having more than one cassette Hi captured requiring 8 digital files for conversion to DVD; need advice...

    The bands are an old Sony TRV - 308 (Hi8, not stereo).  Has a S-video output and the standard 1/8 "A / V out.

    10 PRE capture video with the correct acquisition card?  What capture device do you recommend for a x 64 Windows 7 computer?

    Also, what format you capture video / audio?  DV - AVI?

    I have a disc for a video player 1 TB and 1 TB for audio, set up in a raid (mirror) so really four drives of 1 TB.  This storage should not be a problem.   I have also 2 drives raptor of 360 GB 10 000 rpm installation on a raid 0 (striped) I only save files program and I am currently editing.

    Old forum discussion, missing message now, but here's the summary of

    .

    Matt with Grass Valley Canopus in their helpdesk tech said that the 110 model will be sufficient for most amateur. If a person has a lot of bands that often played the band extends and decreases the magnetic coding. If your goal is to encode strips in good shape buy the 110, you can if you will be encoding old poor quality tapes model 300

    .

    Both the 110 and 300 are two-way devices, so you can exit back covering... If you do not need this, look at the model 55

    .

    http://www.grassvalley.com/products/ADVC55 A path only on computer

    http://www.grassvalley.com/products/advc110 for good bands, or

    http://www.grassvalley.com/products/advc300 better with the OLD band

    Or

    ADS Pyro http://www.adstechnologies.com

    Capture will be DV AVI Type II with 48 KHz 16-bit Audio

  • Need advice please

    I am learning asc3 and love it. I just stumbled across a problem I tried to do a tutorial recently where loading the design of random on them cards and cards back.

    I constantly get this error. If someone can you please check my work and the opinion and tell me where I made the mistake. I don't think its in the code, but the placement of the graphics, but I need a confirmation about this and also on where is the error:

    TypeError: Error #1009: cannot access a property or method of a null object reference.
    card / settype)
    in Memory / CardLoader)
    to Memory()

    Please GO HERE to GET ATTACHMENT OF MY FILES THAT I MADE: http://www.actionscript.org/forums/showthread.php3?t=190078

    Thank you

    In my view, that he had no problem compiling. The error that show you is a runtime error. I'm assuming that your fla file will start the show as soon as it did the compilation, and it's where he hit the problem... trying to act on an object that was not in the scope. To speak with the object, it must be present, but it was 5 executives down the road.

    If you want to act on it when it finally got here, you have assigned something from the outset within the Framework 1 (some variable (s)), and have little code in the frame to the bottom of the line where Load_mc is who uses variables.

    What you could do as an alternative, is have the card or invisible Framework 1 Load_mc and then make it visible when you get to the image you want to show him in.

  • computer freeze-up. I'm stuck. need advice please.

    Greetings. I am back moaning on my computer. I'm on Athlon XP2000 + with Windows XPpro SP3. It keeps freezing upwards of anytime, anywhere, everything I do, browse the Internet or opening a folder on the desktop and even on startup and shutdown. Spend more time watching starts. He defragged yesterday and allowed the event viewer. All devices and all work properly checked and their drivers are up-to-date. I have Avast running and she have also digitized without result. None of this has made all the difference. It freezes again. But nothing shows in the event viewer. Charge only information about services being started up. Repeated several times because of me the reset. So it is perhaps not a thing of Windows. He told me that my motherboard does not work correctly. And now, I'm stumped. I don't know enough about the symptoms of the disease of computer to even guess what the problem is. Help.

    Could be something material fail to virus, overclock too many programs running at the same time. Difficult to say without seeing the machine in action. Try these programs and they can help. The first is a bug detector. The second is a good uninstaller, but has a single utility. When you download it and run it, click on tools then autorun manager. This will show you what's running at startup. You can select one you don't no need to startup and remove. It does not kill the program, just does not come on at startup. The third is a good Cleanup utility, solves the problems of performance and register. I run every day at startup and keep on top of defragmentation without delay of time as well. I hope this helps.

    http://www.Malwarebytes.org/

    http://download.CNET.com/Revo-Uninstaller/3000-2096_4-10687648.html

    http://download.CNET.com/advanced-SystemCare-free/3000-2086_4-10407614.html

    PS. They are free.

  • Run the script if only for a specific computer: need advice.

    I want to be sure that a group, a people has done a job "within the gates" and that they did not bring pictures under the direction of the House.

    My script works only if they get the name fo PCs.

    I thought to use each computer name (network name), but I couldn't get it from javascript.

    Would be an another way to do it from a photoshop on PC windows7 Pro network script?

    Thank you

    One idea is to run a startup script to run a vbs script to set a variable in Photoshop.

    For example, this script will set a variable 'processorID"with computers processor ID that can be checked using your script: -.

    var processorID = $.getenv('processorID');
    

    vbs...

    strComputer = "."
    Set objWMIService = GetObject("winmgmts:\\" & strComputer & "\root\cimv2")
    Set colItems = objWMIService.ExecQuery("Select * from Win32_Processor")
    For Each objItem in colItems
    ProcessorID = objItem.ProcessorId
    Next
    Set appRef = CreateObject( "Photoshop.Application" )
    Script =  "$.setenv('processorID','" & processorID & "');"
    appRef.DoJavaScript( Script )
    

    You could blur the vbs code, an example of script to do this is here...

    http://StackOverflow.com/questions/4252419/free-VBScript-obfuscator

Maybe you are looking for

  • Qosmio F - cannot load Windows or anything

    Yesterday, while studying the other day outside another student struck the table on what I was studying. I would say 'typed' as it was not so difficult. The normal message where it says that the laptop will move the hard drive to a place course, etc.

  • Say that I forgot my iPad password

    I forgot my password for iPad mini

  • Disorders instalation/uninstall, need help.

    I don't know exactly where this post. I have a problem with the installation, I need someone to give me a hint, because I lose a lot of time tryong to get things fixed. My brief history of the installation. Installed months ago LV8.2, CVI, and measur

  • binary rotation

    Hello I want to turn a binary number in LabVIEW, y at - it a function that can do this? Or how can I do this? Thanks in advance

  • G530 touchpad problem

    Hello I hope I'm posting in the right section - if I'm not I apologize in advance. This is the second time that my touchpad has uninstalled itself - I'm still able to click, but I can't scroll and is not an option self-liberation. The complete materi