Find out sql text

Hi All,
How i can findout which sql statement executed from which client machine??
I think with the help of v$session and v$sql views we can find out.But I am not able to find out the relaionship beween these tables.
Any Idea???

sam wrote:
But here i wan to store who is used which query for future reference.I agree with carstenj that using a trigger does not sound practical. What would the triggering event be - there are system triggers but I cannot think of any that would execute just because a query executed.
You could set up a scheduled job to capture users and their activity but I don't see what advantage that would have over the usual automatic workload repository (requires a license) reports.
You can get a point-in-time picture of of a session's activity by using Oracle trace: turn it on, perform the trace (there is overhead and the session will run slightly slower) and turn it off again when you are done. You can get run statistics for each SQL the session executed with execution plans too.

Similar Messages

  • Where to find the SQL text in v$ views?

    Hi All,
    Oracle 11.2.0.3 on RedHat.
    I am trying to find out SQL activity on my database for a very narrow time window. Please see the SQLs I did
    SQL> select distinct user_id, sql_id
      2  from v$active_session_history
      3  where sample_time between to_date('20120704012000','yyyymmddhh24miss') and
      4            to_date('20120704012200','yyyymmddhh24miss')
      5  and user_id = 111 ;
       USER_ID SQL_ID
           111
           111 gjg25k7stx9ba
           111 a8m049aj31b1y
           111 asjw7b7h99w4m
           111 fvffk1aqrb55n
           111 9gskv9b1u7mau
           111 03tsb9pp3h1uj
           111 dm0jppss5z0ay
           111 44n0svyuc000x
           111 16t1tpr7mdqnf
           111 bzpu510tng689
           111 dsqzhqdvzamys
    12 rows selected.
    SQL> select * from v$sqltext where sql_id='16t1tpr7mdqnf' order by piece ;
    no rows selected
    SQL> select * from table( dbms_xplan.display_awr('16t1tpr7mdqnf') ) ;
    no rows selectedI can see the text for all SQLs in v$sqltext, except 16t1tpr7mdqnf. User id 111 is the user used to run our batch processes.
    Where can I find the text for this SQL id 16t1tpr7mdqnf ?
    This SQL has run about 8 hours ago.
    Thanks in advance

    When you say, ASH captures active sessions, does that mean, it only captures "session" information, which may not include details about SQL ?Exactly, it's a snapshot of session level information for active sessions.
    So, session X can be executing sql statement abc123 and be captured by ASH which takes a snapshot of all active sessions every 1 second in V$ACTIVE_SESSION_HISTORY.
    1 in 10 of these active sessions is stored in the repository - DBA_HIST_ACTIVE_SESS_HISTORY (in practice, this 1 in 10 sample is literally as simple as store the active sessions from every 10th second).
    Independently of this, obviously you have the shared pool and V$SQL. If your statements are in here then great.
    Otherwise you have AWR which captures the top N sql from each interval.
    So, as mentioned, perfectly normal to have references to sql ids and sql plan hash values captured in ASH but not AWR.
    One interesting thing here is, sql_exec_id is blank. What does that say? It depends.
    It's likely to be one of two things:
    1. some sort of bug or limitation - there are certain operations and time limits were some of the ASH values get cleared out or don't get cleared out.
    2. occasionally I've seen the ASH information be misleading when it comes to certain recursive operations - one specific example I can think of related to the recursive merge of sql plan baseline metric tracking operations.

  • How to find out what text encoding has been used in mp3 tag

    Hello
    I have some foreign songs that I am importing into itunes. When a song called "04.公路 塵埃 北合起." gets imported, it comes up in itunes as "04.§Ω∏Ù π–ÆJ •¶X∞"
    Now I don't know a lot about different text encodings, but from what I've read on the forums is that the problem is that the tags that are encoded on the srcfiles are not unicode. I have tried the java application "UnicodeRewriter" recommended elsewhere in the forums, but both the commone Chinese ecodings, viz Big5 GBK etc.
    Is there a way to cut a world from (eg a chinese glyph) and somehow find out what text encouding has been used?

    Sorry, that question wasn't very well phrased. I'll try it again.
    I have some foreign songs that I am importing into itunes. When a song called "公路 塵埃 北合起" gets imported, it comes up in itunes as "§Ω∏Ù π–ÆJ •¶X∞"
    Now I don't know a lot about different text encodings, but from what I've read on the forums is that the problem is that the tags on the srcfiles are not unicode. I have tried the java application "UnicodeRewriter" recommended elsewhere in the forums, but whatever I sent the source encoding to, eg Big5, GBK, or one of about 9 others, I just get different types of garbage coming through.
    Is there a way I could take the original glyph in the file name (which shows up correctly on my desktop) and paste it into some sort of table. That table will then show me how that glyph will look in all different encodings without the correct conversion. So if I can match my "公" to my "§" I'll be able to see what the src encoding is.
    I know this is a longshot, but any help appreciated.
    Sorry for the rather rubbish explanation earlier.

  • How to find out sql server administrator account in sql server 2008 R2

    how to find out sql server administrator account in sql server 2008 R2
    adil

    there is any way to find out actual administrator
    because i forget that user i used to logon to server and installed sqlserver
    adil
    Hi adilahmed,
    According to your description, you forgot the account which was used to install SQL Server. SQL Server service account information is stored in Windows Registry database. You can get this information from Services Console or SQL Server Configuration.
    For example, to get account information from Services Console.
    1. Go to Start > Run > Services.msc
    2. Right Click on SQL Server Service, i.e. “SQL Server (InstanceName)” and go to properties
    3. The account information is available under Log On tab.
    Or you can get the information by using DMV and so on.
    SELECT servicename, service_account FROM   sys.dm_server_servicesGO
    If you now log in SQL Server by using sysadmin account, you can check all login names in security and find the original account to login.
    Thanks,
    Sofiya Li
    Sofiya Li
    TechNet Community Support

  • Find out SQL Server Logins and associated Server Roles

    We have SQL Server 2000, 2005, 2008 and R2 in our environment.  We have several SQL Servers in our environment. I want to find out Server Logins and Server Roles Assigned in SQL Server. I want following information. Is there any way I can
    find it? Any help would be highly appreciated.
    SQL Server
    Login
    Role Assigned
    Server1
    Login1
    bulkadmin
    Server1
    Login2
    serveradmin
    Server1
    Login1
    diskadmin
    Server2
    Login1
    public

    The query only returns those logins that are assigned to at least one server role.if they are not assigned it will not return that login.If you want to return all the login then use the query below.Note that query returns public for those login with no server
    role assigned.
    select @@SERVERNAME
    ,sl.name
    ,isnull(DB_Roles.Roles,'Public')
    from syslogins sl
    left join
    select 'sysadmin' as Roles
    union all
    select 'securityadmin'
    union all
    select 'serveradmin'
    union all
    select 'setupadmin'
    union all
    select 'processadmin'
    union all
    select 'diskadmin'
    union all
    select 'dbcreator'
    union all
    select 'bulkadmin'
    union all
    select 'No serverRole'
    union all
    select 'public'
    ) DB_Roles
    on
    Case When sl.sysadmin=1 and DB_Roles.Roles='sysadmin' then 'sysadmin'
    When sl.securityadmin=1 and DB_Roles.Roles='securityadmin' then 'securityadmin'
    When sl.serveradmin=1 and DB_Roles.Roles='serveradmin' then 'serveradmin'
    When sl.setupadmin=1 and DB_Roles.Roles='setupadmin' then 'setupadmin'
    When sl.processadmin=1 and DB_Roles.Roles='processadmin' then 'processadmin'
    When sl.diskadmin=1 and DB_Roles.Roles='diskadmin' then 'diskadmin'
    When sl.dbcreator=1 and DB_Roles.Roles='dbcreator' then 'dbcreator'
    When sl.bulkadmin=1 and DB_Roles.Roles='bulkadmin' then 'bulkadmin'
    else null end=DB_Roles.Roles
    order by 2
    Vinay Valeti| If you think my suggestion is useful, please rate it as helpful. If it has helped you to resolve the problem, please Mark it as Answer
    works like a charm, thank you!!!

  • How to find auditing SQL Text query information

    Hi,
    I am using auditing:
    SQL>select object_name,action_name,sql_text from dba_audit_trail;
    UPDATE SIS_STUDENT_COURSES SET DENIAL_DATE = :B5 , LETTER_GRADE = :B2 WHERE SEMESTER = :B4 AND COURSE_NO = 4035 AND STUDENT_ID = :B3 AND NVL(LETTER_GRADE, 'x') NOT IN(:B2 , :B1 );In the above query, I am unable to understand the B5,B1,B2,B3 etc..
    as my understand its bind variables but the in actual database query is not using any bind variable.
    How can I find the exact SQL Text? I mean what exact sql statement was raised by database user.

    Hi JIC,
    the bind values are in the sql_bind column in dba_audit_trail, the binds you see look like being generated by your application,
    however they may be system generated bind values if parameter cursor_sharing is being used. It is not recommended to
    disable cursor sharing just to see the original sql statement in the audit records. It generally makes no sense to try to reconstruct
    the statement 'as if' no binds were being used.
    greetings,
    Harm ten Napel

  • How can I find out time texts were received and sent?

    Is there a way to time stamp all text messages? I need to know specific times for work

    Unfortunately, I do not believe all texts are time stamped in this current iteration of iOS.  This is what I have gathered after doing a search.

  • How to find out what is populating a table using sql

    I would like to find out what is populating a particular tabe. I used
    select name,type from dba_source where text like upper('%some_table%'). I know this will give me procedure,function package etc, If this table is being populated by a form how will i get the form name. I am using window XP oracle 10G database

    IF you to check what is running at a precisly momemmt you need to Join :
    v$transaction a, Gives you current Transaction going On
    v$session b, Gives You info about session User
    v$sql c Gives you info about SQL Running at Precisly momment
    With these Condition you are able to Find what's is Runnimg
    where a.SES_ADDR= b.SADDR (+) and
    b.SQL_HASH_VALUE = c.HASH_VALUE(+)
    I Hope This May help.
    Rgds

  • How do I find out what I'm doing in a package ? v$sql ? etc.

    I'm running Linux and trying to find out at what point a process is at.
    It is running a procedure in a package, lets say. Package_main.main(). If I join v$session to any of v$sql,v$sqlarea,v$sqltext all I get is the sql text relating to the "package_main.main()" call. I want to find out what point in the PL/SQL statck the execution is : what view should I be looking at ?
    johnnie d

    I believe the problem you are describing has been identified as a design feature for 10g+. I have not spent any time looking at the issue.
    If you do not need immediate access but want to see what a session was doing you might be able to turn on sql trace for an active session and then review the trace file after you have allowed the trace to run long enough to capture what SQL is being executed.
    Being that all SQL would have a child cursor there should be a way to tie sql from within pl/sql being executed to the session executing the stored code. I just have not looked into this. Maybe someone else has.
    HTH -- Mark D Powell --

  • Finding out Text -ID in ME51n

    Hi,
       I have an Internal table which contains the PR header and item data.
       I  have to find out the Item text for all the PR item nos.
        How can I find the Item level text in ME51n using   'Read_text ' function module . What are the parameters to be passed along with TDID and TDOBJ
    Thanks and Regards ,
    Parvatha Reddy.

    Hi Parvatha,
    The ever best solution is to find out yourself,
    Here is the way i Approach to find out Read_text passing parameters.
    Open you TCODE & Before Going to your text data, Open ST05 and activate trace,
    now just see you text in the TCODE & Goto-ST05 and deactivate trace.
    Now Display Trace...!
    Here you see a lot of tables and its SQL Retrieves,
    Look for table STXH & STXL...(It contains the Read_text passing parameters).
    Now pass as you require.
    Thanks & Regards,
    Dileep .C

  • SQL to find out changes

    Hi,
    I have a table with 50 columns, lets call it Table_A . There is a identical table called Table_B. The data in Table_B gets flushed every night and data from Table_A is moved to Table_B. A new set of data is inserted into Table_A. Now I need to find out which field value is changed and what is changed . A minus command can give the changed records, but how to get the what was prior value for each changed field . Here is what I am looking for
    WITH TABLE_A AS  (  SELECT 1 ID, 'JOHN' NAME,  'SALES' DIV FROM DUAL
    UNION
            SELECT 2 ID, 'MARRY' NAME,  'ACCOUNTS' DIV FROM DUAL
    UNION
            SELECT 3 ID, 'KIM' NAME,  'SERVICE' DIV FROM DUAL),
    TABLE_B AS  (  SELECT 1 ID, 'JOHN' NAME,  'SALES' DIV FROM DUAL
    UNION
            SELECT 2 ID, 'MARRY' NAME,  'ACCOUNTS' DIV FROM DUAL
    UNION
            SELECT 3 ID, 'KIM' NAME,  'SALES' DIV FROM DUAL) 
    SELECT * FROM TABLE_A
    MINUS
    SELECT * FROM TABLE_B
    what i want is something that will spit out this (only one record, because there is only one diff record found in the above query.)
    ID,     OLD_ID,     NAME,   OLD_NAME ,  DIV ,       OLD_DIV
    3           3       KIM       KIM       SERVICE     SALESThe above one is for sample purpose, The actual table has 50 fields, and except the ID field, all other field values might change.
    All ideas and solutions are appreciated.
    Thanks in advance.

    >
    I understand your frustration. Here is the scenario. There are set of 5 tables. 1 master and 4 child tables ( and an identical set of 5 tables called "prior" tables, to store the flushed data from the "current" 5 tables). Every night data comes in XML files, the data from the 5 "prior" tables get flushed out . The data from the 5"current" table set moves to 5 "prior" tables. Then XML data gets loaded into the 5 "current"tables. Now once XML gets loaded into the original table ,I have to find out the diffs in those 5 tables(between current and prior) and generate result sets listing only the columns that have changed value. So what is current value and what was the prior value(from the prior table) side by side .
    >
    I'm not frustrated. It's just that any suggestions we make are solely based on the information provided. Sometimes posters start focusing on the solution they want to use (which is ok for their viewpoint) and don't explain the actual problem they are trying to solve. That often limits our ability to understand the options.
    Now that you posted the above there is another option you could use that might better deal with some of the issues people have mentioned.
    That solution is to compare the XML versions of the data. You haven't mentioned HOW you load that XML data into relational tables (what tool and process) but there is one VERY USEFUL feature of data in XML format:
    ALL data is already in TEXT format (excluding the obvious LOB possibilities, which you also haven't mentioned).
    That means ALL datatypes can use simple string comparison to detect differences: numbers, dates, character data. The actual meaning doesn't matter. If even a single byte is different the value can be considered different.
    Oracle uses XML and XSLT functionality as the base for their DBMS_METADATA_DIFF package. That package is used to compare schemas or databases to detect object (e.g. tables, views) differences and to automatically produce DDL for ALTER statements that can modify an object to have the same structure as the objects being compared.
    I suggest that you consider doing your comparisons on the XML versions of the data. Each night you would compare the new XML file data against the previous night's XML data. You can use XSLT to do the comparison and also to produce an XML file that contains the differences. Then you can use that 'difference' file as the source of your process to ultimately display the data.
    An additional advantage of doing the XML comparisons is that you can do them asynchronously as soon as the new file is available. And the, if you don't really need the 'change' info in the database you never need to load it. Just transform the change XML into an Excel file or flat file format for users to load into Excel for review.
    Do you license the partitioning option? If so then another suggestion would be to stop doing your nightly 'flush and move'. Recreate your 'prior' tables as partitioned tables that have just ONE range partition; a MAXVALUE partition that covers ALL data. Then each night you would:
    1. TRUNCATE the prior table
    2. Do an EXCHANGE partition between the 'current' table and the associated 'prior' table. Very fast, metadata only - no data actually gets moved.
    3. Load the 'current' table with new data.
    The above process avoid any actual data movement between the 'current' and 'prior' tables.
    Not picking on you but you also haven't said how that new daily 'current' data is being used. If the only reason you are loading it into a table is to compare it to yesterday's data you could just do that with XML like I mentioned above.
    Or you could load the XML itself into a table (e.g. XMLTYPE) and uses Oracle's built-in XDB fuctionality and do the XML comparison 'inside' the database. Then load a standard heap table from the XML table when you need to.
    Maybe the above helps explain why the more info we have about the actual end-to-end problem you have the more options we can suggest for dealing with it. You are the only one that can determine if an option is viable for your particular use case and constraints.
    Updated to add links to Oracle's XML functionality
    See the XMLDiff function that you can use IN the database if you load the XML files themselves. From the SQL Language doc
    http://docs.oracle.com/cd/E11882_01/server.112/e26088/functions241.htm#SQLRF20025
    >
    Purpose
    The XMLDiff function is the SQL interface for the XmlDiff C API. This function compares two XML documents and captures the differences in XML conforming to an Xdiff schema. The diff document is returned as an XMLType document.
    For the first two arguments, specify the names of two XMLType documents.
    For the integer, specify a number representing the hashLevel for a C function XmlDiff. If you do not want hashing, set this argument to 0 or omit it entirely. If you do not want hashing, but you want to specify flags, then you must set this argument to 0.
    For string, specify the flags that control the behavior of the function. These flags are specified by one or more names separated by semicolon. The names are the same as the names of constants for XmlDiff function.
    See Also:
    Oracle XML Developer's Kit Programmer's Guide for more information on using this function, including examples, and Oracle Database XML C API Reference for information on the XML APIs for C
    Examples
    The following example compares two XML documents and returns the difference as an XMLType document:
    >
    See Oracle' own XML Developer's Kit for out-of-the-box functionality for 'diffing' XML documents:
    http://docs.oracle.com/cd/E11882_01/appdev.112/e23582/adx_c_diff.htm
    >
    21 Determining XML Differences Using CThe Oracle XDK includes components that help you to determine the differences between the contents of two XML documents and then to apply the differences (patch) to one of the XML documents.
    This chapter contains these topics:
    Overview of XMLDiff in C
    Using XmlDiff
    Using XmlPatch
    Using XmlHash
    Overview of XMLDiff in C
    You can use Oracle XmlDiff to determine the differences between two similar XML documents. XmlDiff generates an Xdiff instance document that indicates the differences. The Xdiff instance document is an XML document that conforms to an XML schema, the Xdiff schema.
    You can then use XmlPatch, which takes the Xdiff instance document and applies the changes to other documents. This can be used to apply the same changes to a large number of XML documents.
    XmlDiff only supports the DOM API for input and output.
    XmlPatch also supports the DOM for the input and patch documents.
    XmlDiff and XmlPatch can be used through a C API or a command line tool, and they are exposed by two SQL functions.
    An XmlHash C API is provided to compute the hash value of an XML tree or subtree. If hash values of two trees or subtrees are equal, the trees are identical to a very high probability.
    >
    Did you notice that part about 'XmlDiff generates an Xdiff instance document that indicates the differences'? That is EXACTLY what your initial question was asking about, albeit from a DB perspective.
    But XML is XML, DIFF is DIFF, a date/number/text are all strings. So XML 'database data' works the same as XML 'test or complex hierarchy' data.
    Here is a pretty good writeup of how to do XML diff. See the XMLDIFF2 section for the best Oracle sample:
    http://ellebaek.wordpress.com/2011/02/01/comparing-xml-in-oracle/
    >
    XMLDIFF2
    The algorithm in our extended XMLDIFF function that we’re going to call XMLDIFF2 is:
    1.Prepare CLOB variable for constructing the difference XML.
    2.Find minimum number of leading elements that form primary key values (unique lookup).
    3.Look for primary key values in XML1 not present in XML2: These primary key values have been deleted.
    4.Look for primary key values in XML2 not present in XML1: These primary key values have been inserted.
    5.Diff all common primary key values, ie in both XML1 and XML2.
    6.Return NULL if no differences found.

  • Is there a way to find out which project using the record Z_student by sql

    Is there a way to find out which project using the record Z_student by sql
    use Find in in Application Designer is time consumer

    Try following SQL
    with all credits to the original poster of the greater portion of this sql
    http://srini-peoplesoft.blogspot.co.uk/2012/05/find-in-text-sql.html
    select projectname  from psprojectitem
    where (objectvalue1,objectvalue2,objectvalue3) in
    With Srch As
    Select Str, SubStr(Max(HexStr),3) Srch_Str
    From
    Select RNum, Str, Hexcode, Sys_connect_by_path(HexCode, '00') HexStr
    From (
    Select RNum, Str, Chr(Floor(Mod(Code/16, 16))
               + Decode(Floor(Floor(Mod(Code/16, 16))/10), 0, 48, 55)) ||
           Chr(Mod(Code, 16)
               + Decode(Floor(Mod(Code, 16)/10), 0, 48, 55)) HexCode
    From (        
    Select RNum, Str, Ascii(Substr(Str, RNum, 1)) Code
      From (Select Rownum RNum From Dual Connect By Level <= Length(:Str)),
           (Select :Str Str From Dual
            Union
            Select Upper(:Str) From Dual
            Union
            Select Lower(:Str) From Dual
            Union
            Select InitCap(:Str) From Dual
    Start With RNum = 1 Connect By Prior RNum = RNum - 1 And Prior Str = Str
    Group By Str
    select
    objectvalue1,objectvalue2,objectvalue3
    from pspcmprog p, srch
    where dbms_lob.instr(progtxt, srch_str)  > 0
    );

  • Need sql query to find out same item is used in open po and closed po

    Hi Experts,
    I have an requirement is that, i need to find out the item is used in open po and closed po.
      example: A is the item is used in closed PO and Open PO.
      i need to write down the scripts how many same items is used in open po and closed po.
    if any sql script is there please share.
    Please let us know if any concerns.
    Thanks
    bmn

    Hi
    Please try below query
    select
    distinct c.segment1
    from
    po_lines_all a,
    po_line_locations_all b,
    mtl_system_items_b c
    where
    a.po_line_id= b.po_line_id
    and a.item_id=c.inventory_item_id
    and b.closed_code='OPEN'
    and a.item_id in ( select 
    item_id
    from
    po_lines_all d,
    po_line_locations_all e,
    mtl_system_items_b f
    where
    d.po_line_id= e.po_line_id
    and d.item_id=f.inventory_item_id
    and e.closed_code in ('CLOSED','FINALLY CLOSED','CLOSED FOR INVOICE','CLOSED FOR RECEIVING'));

  • How can I find out the number of lines in a text file?

    How can I find out the number of lines in a text file?

    java.io.BufferedReader in = new java.io.BufferedReader( new java.io.FileReader( "YourFile.txt" ) );
    int lineCount = 0;
    while( in.readLine() != null )
    lineCount ++;
    System.out.println( "Line Count = " + lineCount );

  • How do I find out if Sql server Agent's login has rights to a DB?

    How do I find out if the SQL server Agent's login has rights to the target DB, that is the DB on which I will be executing a query ? Is there a query for this ?
    Thanks.

    The job will run with the permissions of owner of the job and only be modified by the owner
    or sysadmin role members.
    you need get the owner of the job and for example 'ABC' is the owner of the job then pass value in the below query 
    DECLARE @DBuser_sql VARCHAR(4000) 
    DECLARE @DBuser_table TABLE (DBName VARCHAR(200), UserName VARCHAR(250), LoginType VARCHAR(500), AssociatedRole VARCHAR(200)) 
    SET @DBuser_sql='
    SELECT ''?'' AS DBName,a.name AS Name,
    a.type_desc AS LoginType,
    USER_NAME(b.role_principal_id) AS AssociatedRole 
    FROM ?.sys.database_principals a 
    LEFT OUTER JOIN ?.sys.database_role_members b ON a.principal_id=b.member_principal_id 
    WHERE a.sid NOT IN (0x01,0x00) AND a.sid IS NOT NULL AND a.type NOT IN (''C'') 
    AND a.is_fixed_role <> 1 AND a.name NOT LIKE ''##%'' AND 
    ''?'' NOT IN (''master'',''msdb'',''model'',''tempdb'') 
    ORDER BY Name'
    INSERT @DBuser_table 
    EXEC sp_MSforeachdb @command1=@dbuser_sql 
    SELECT * FROM @DBuser_table ORDER BY DBName 
    --SELECT * FROM @DBuser_table where username='ABC' ORDER BY DBName 
    Useful links
    http://www.mssqltips.com/sqlservertip/2317/running-sql-server-agent-with-a-least-privilege-service-account/
    http://www.brentozar.com/blitz/jobs-owned-by-user-accounts/
    -Prashanth

Maybe you are looking for

  • My 5th gen nano is stuck in hold mode. Toggling the switch does not work, help!

    I've tried everything suggested on apples website, and nothing is working.  My ipod is stuck in hold mode. I've tried toggling the switch, that doesn't work, I've tried pressing select/play, it is unresponsive. I've tried restoring to factory default

  • Error "Licensing has stopped working" occuring very frequently on Win XP SP3 with Adobe Pro 9.5.x

    Hi All, Do we have any permanent fix to address the License error? Since the user are observing this issue very frequently. Every time Adobe License Recovery tool http://www.adobe.com/support/contact/licensing.html is being executed to recover the li

  • Need HELP since last update.......

    So i updated my phone sometime last week and RIGHT away noticed that the battery life was affected straight away. my phone is Nokia Lumia 800 Days on my phone will NOT charge anymore then 0% and by now most of you reading this will feel my fustration

  • Wifi Printer changed all of my connections

    First I am not pc savy I may not use all of the correct terms so please forgive....Yesterday I was hooking up a Canon Pixma MX 472 wifi printer .During the set up it created its own accept point? thus over riding my exsiting wifi account and disablin

  • Backgrounds That Conform To The Size Of The Browser

    Hi Everyone, With iWeb '09... How can I make the browser background conform (or move with the size of a viewers browser? Here is an example of what I'm talking about. https://www.psd2html.com/order-now.html?ad=smashingmagazine Notice how both sides (