+ Reply to Thread
Results 1 to 8 of 8

Thread: .net question urgent plz answer

  1. #1
    Junior Member
    Join Date
    Aug 2006
    Age
    33
    Posts
    12
    Rep Power
    7

    .net question urgent plz answer

    Q)When application variables will get loaded in to memory and when it gets deallocated.


    Q)After entire application being developed and is been at client location. After few days it want to change the backend say from oracle to SQL Server. How best the problem can be solved?

  2. #2
    Junior Member
    Join Date
    Sep 2006
    Location
    hyderabad
    Age
    29
    Posts
    4
    Rep Power
    7

    Re: .net question urgent plz answer

    After main process which is started at application start will close ,the application varaibles will be lost.
    -->Better to work like this:UI/PL<-->Business LAyer<-->DataAcess Layer<-->DataBase.It will be the easy one than other one

  3. #3
    Unregistered
    Unregistered

    Re: .net question urgent plz answer

    Can you explain clearly I am not able to get it

  4. #4
    Junior Member
    Join Date
    Aug 2006
    Age
    33
    Posts
    12
    Rep Power
    7

    Re: .net question urgent plz answer

    Thanks shiva 4 ur reply. Can you explain it I am not able to understand.





    Quote Originally Posted by shiva994u View Post
    After main process which is started at application start will close ,the application varaibles will be lost.
    -->Better to work like this:UI/PL<-->Business LAyer<-->DataAcess Layer<-->DataBase.It will be the easy one than other one

  5. #5
    Member
    Join Date
    Jun 2007
    Age
    28
    Posts
    38
    Rep Power
    6

    Smile Re: .net question urgent plz answer

    Better to work like this:UI/PL<-->Business LAyer<-->DataAcess Layer<-->DataBase.It will be the easy one than other one

    for future compatibilty, we should seprate User Interface(UI)/Programming Layer(PL)
    Business layer n Data Access layer.
    suppose u now need to change backend,then u dont need to do any change in remaning layer.

    because, your DataAccess Layer must be having capability to create connection depending on DataBase.
    those in turn will be returned to BL ....

    so change in any layer wont effect your product.

  6. #6
    Junior Member
    Join Date
    Jul 2010
    Posts
    2
    Rep Power
    3

    Technical Questionnaire on Excel, Access, SQL, VBA, VB6, VB.NET, SQL SERVER

    Hi all,

    I need to create a Technical Questionnaire in Word (doc) format for the following topics:

    copulsory:
    1] EXCEL
    2] ACCESS
    3] SQL
    4] VBA
    5] VB6

    optional:
    6] VB.NET
    7] SQL SERVER

    Each Topic would be of 20 marks and would consist of :
    2 Single-select questions,
    2 Multi-select questions,
    1 Text (write the answer / code / Query in TextBox) questions.
    i.e. Total of 5 Questions in each Topic.
    Total Score : 100 marks

    So for each Topic,
    2 x 3 marks = 6 marks (Single-select Q)
    2 x 3 marks = 6 marks (Multi-select Q)
    1 x 4 marks = 8 marks (Text Q)
    -------------------------------
    Total : 20 marks


    Does anyone have such kind of Word document Templates & also the sample questions for the given topics?

    Please reply ASAP.

  7. #7
    Junior Member
    Join Date
    Sep 2010
    Age
    30
    Posts
    1
    Rep Power
    3

    Re: .net question urgent plz answer

    i have also have the same issue and looking for solution.

  8. #8
    Member kalyansantosh's Avatar
    Join Date
    Jun 2007
    Location
    Chennai, Tamil Nadu, India
    Age
    32
    Posts
    59
    Rep Power
    7

    Re: .net question urgent plz answer

    will explain how to transfer Oracle Objects, including constraints and data, to SQL Server 2000. Step I: Create the Linked Server
    Linked servers provide connectivity to external data sources, allowing you to access data and run procedures on SQL Servers other than the one you are currently running on. Moreover, linked servers provide connectivity to just about any data source you can get an ODBC driver for, providing you with a DML interface to Oracle databases, Excel spreadsheets, flat files and many others. In many cases, this makes linked servers a viable alternative to using DTS or BCP to get data from external sources.
    I have used link server to migrate Oracle database to SQL Server 2000.
    To create a linked server to access an Oracle database instance:
    1. Ensure the Oracle client software on the server running SQL Server is at the level required by the provider.
    2. Create an NET8 alias name on the server running SQL Server that points to an Oracle database instance.
    3. Execute sp_addlinkedserver to create the linked server, specifying MSDAORA as provider_name, and the Net8 alias name for the Oracle database instance as data_ source.

      Assume that NET8 alias name as OracleDB.

      sp_addlinkedserver ‘OraLinkServer’, ‘Oracle’, ‘MSDAORA’, ‘OracleDB’
    4. Use sp_addlinkedsrvlogin to create login mappings from SQL Server logins to Oracle logins.
    This example maps the SQL Server login ‘Bush’ to the linked server defined in Step 3 using the Oracle login and password OrclUsr and OrclPwd:
    sp_addlinkedsrvlogin ‘OraLinkServer’, false, ‘Bush’, ‘OracleUserID’, ‘OrclePassword’
    In order to test the whether the linked server is properly created or not, execute the following sql statement from query analyzer
    SELECT * FROM OPEQUERY(OraLinkServer, ‘Select * From ‘)
    Step II: Creating Tables
    Converting Oracle SQL tables, indexes, and view definitions to SQL Server tables, indexes, and view definitions require relatively simple syntax changes. This table shows some differences in database objects between Oracle and SQL Server. The row size in Oracle is unlimited, where it is 8060 bytes in SQL Server. SQL Server allows you to create tables with more the 8064 bytes in row size with a warning message, however it will raise an error message when transfer the data from Oracle to SQL Server if the row size is more than 8060 bytes.
    I have not considered the table and index storage parameters in this article. You can modify the scripts for as per your requirement to include them.

    Some of the data type conversions from Oracle to SQL Server are straightforward, while other data type conversions will require evaluating a few options. I have assumed the data type conversions in the following manner. You can change as per your convenience by changing in the script.
    ‘CHAR’ –> ‘CHAR

    ‘VARCHAR2′ –> ‘VARCHAR

    ‘LONG RAW’ –> ‘IMAGE’

    ‘LONG’ –> ‘TEXT’

    ‘DATE’ –> ‘DATETIME’

    ‘BLOB’ –> ‘IMAGE’

    ‘CLOB’ –> ‘TEXT’

    ‘NUMBER’: Without precision –> ‘INT’, With Precision and Scale –> ‘FLOAT’
    Step III Creating the Table Defaults
    Microsoft treats a default as a constraint, where as Oracle treats a default as a column property.

    Is easy easily migrate the Oracle DEFAULT column property. You should define DEFAULT constraints at the column level in SQL Server without applying constraint names

+ Reply to Thread

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Similar Threads

  1. Need .Net Interview Questions
    By vidyasagarkumar in forum VB / ASP.NET Technologies
    Replies: 6
    Last Post: 16-06-10, 03:40 PM
  2. Interview questions you may be asked
    By yathish in forum HR Questions
    Replies: 6
    Last Post: 24-12-06, 08:35 PM
  3. The 25 most difficult questions you'll be asked on a job interview
    By AjayKumar.Kataram in forum HR Questions
    Replies: 1
    Last Post: 22-09-06, 08:30 PM
  4. Help me for Interview question
    By ajutipu in forum EMBEDED SYSTEMS & VLSI
    Replies: 4
    Last Post: 31-08-06, 07:04 PM
  5. URGENT OPENINGS FOR .NET PROFESSIONALS
    By santhoshb in forum Experienced Jobs
    Replies: 0
    Last Post: 11-06-06, 10:15 AM

Tags for this Thread

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts

Content Relevant URLs by vBSEO 3.5.1 PL1