Search:

Type: Posts; User: bhaskarjha; Keyword(s):

Search: Search took 0.00 seconds.

  1. Answers
    4
    Views
    5,514

    SQL Server - Re: How to move db to another server?

    Hi
    here is the another solution..

    First, you have to make sure that no one else but the administator is currently using this database.

    Next, create a backup of the database. For this open...
  2. Answers
    1
    Views
    8,502

    Re: Create arraylist dynamically

    Create an array of ArrayList obejcts depending on the count you provide and then use it accordingly in the code.
    e.g.
    using System.Collection; // this namespace holds the definition for ArrayList
    ...
  3. Answers
    4
    Views
    5,514

    SQL Server - Re: How to move db to another server?

    If your only intention is to save diskspace by transferring entire dabase to another server and not want to use this database on other server. Then you don't have to bother about sql server and use...
  4. Answers
    5
    Views
    22,907

    SQL Server - Re: Insert of multiple records in single query

    Thank you for this reply. But instead of using SQL server tools, if i have to insert records programatically say in C# what could I do?

    Another option that can be applied is to use temporary table...
  5. Answers
    2
    Views
    5,477

    Re: Tables names of a database in a combo box

    Use this query for the CommandText property of your selectcommand:

    select name from sysobjects where xtype='U'

    this works in MS sql server.

    whether it solve the problem do inform me.
  6. Answers
    5
    Views
    22,907

    SQL Server - Re: Insert of multiple records in single query

    if your question is about adding one record at a time:

    insert into <tablename> values(val1,val2,val3,...valn);

    where tablename is name of the table, val1, val2 are the values you want to add...
  7. Answers
    3
    Views
    15,357

    Re: Events in C# language

    First I would like u to understand what the event is?
    Event in simple meaning is any interaction of a user to the system that causes the system to take actions is event. E.g. when you (a user)...
Results 1 to 7 of 7
About us
Applying for a job can be a stressful and frustrating experience, especially for someone who has never done it before. Considering that you are competing for the position with a at least a dozen other applicants, it is imperative that you thoroughly prepare for the job interview, in order to stand a good chance of getting hired. That's where GeekInterview can help.
Interact