Forum Replies Created

Viewing 15 posts - 211 through 225 (of 232 total)

  • RE: Need help on XML urgently

    Thanks for your replu. I already resolved the problem like you have resolved, but i am getting the prob while using namespace

    Abhijit - http://abhijitmore.wordpress.com

  • RE: XML xsd problem

    RootElement xmlns="http://www.w3org.com/XMLschema.xsd"

    ChildElement Value="1"

    SubElements

    Id 1 /Id

    Value A /Value

    /SubElements

    SubElements

    Id 2 /Id

    Value B /Value

    /SubElements

    ChildElement

    RootElement

    Abhijit - http://abhijitmore.wordpress.com

  • RE: XML xsd problem

    I have xml schema...

    <RootElement xmlns="http://www.w3org.com/XMLschema.xsd"

    Abhijit - http://abhijitmore.wordpress.com

  • RE: Need all databases, tables and indexes in T-sql

    SELECTDB_NAME() AS DATABASENAME,

    OBJECT_NAME(B.OBJECT_ID) AS TABLENAME,

    B.NAME AS INDEXNAME,

    B.INDEX_ID

    FROMSYS.OBJECTS A

    INNER JOIN SYS.INDEXES B ON A.OBJECT_ID = B.OBJECT_ID

    WHERENOT EXISTS (SELECT *

    FROM SYS.DM_DB_INDEX_USAGE_STATS C

    INNER JOIN master.sys.databases...

    Abhijit - http://abhijitmore.wordpress.com

  • RE: Which index option is the best

    we cannot decide w/o knowning few factors like how frequently data will be selected, frequency of insert / update, selectivity on columns to be search..

    Abhijit - http://abhijitmore.wordpress.com

  • RE: SHORT CUT KEY TO OPEN QUERY ANALYZER FROM "RUN" PROMPT

    if you are using SQL Server 2005

    then type sqlwb in cmd prompt.

    Abhijit - http://abhijitmore.wordpress.com

  • RE: How to become SQL Server dba

    after hard practice on SQL serevr 🙂

    refer SQL Server DBA Books

    Abhijit - http://abhijitmore.wordpress.com

  • RE: To write Sql Query

    hope this wud help you...

    CREATE TABLE #test(

    IDINT,

    TextCHAR(3),

    ParentIDINT

    )

    INSERT#test

    SELECT1, 'xyz', NULL UNION

    SELECT2, 'pqr', NULL UNION

    SELECT3, 'abc', 1 UNION

    SELECT4, 'mno', 1 UNION

    SELECT5, 'xyz', 3 UNION

    SELECT6, 'oop', 3 UNION

    SELECT7, 'umn', 2

    SELECT...

    Abhijit - http://abhijitmore.wordpress.com

  • RE: Estimating transaction log size

    I would say that change the recovery model to SIMPLE, before that take a full backup of your database and as Mike said decrease the time limit for transaction log...

    Abhijit - http://abhijitmore.wordpress.com

  • RE: Don't want to set Permissions at table level

    okay let me explain the criteria,

    I have 1 query which contains dynamic where clause. I dn't known which cols will be consider to filer the records, I dn't known the...

    Abhijit - http://abhijitmore.wordpress.com

  • RE: Top 5 based on total order query

    I think you have create the union for "Other" countries

    Abhijit - http://abhijitmore.wordpress.com

  • RE: SQL Server 2005 SP3

    when SQL Server 2008 SP 1 launched. 🙂

    Abhijit - http://abhijitmore.wordpress.com

  • RE: sql2005 Table/data partitioning

    Hi check this example this will demonstrate how partition helps you to store the data efficiently. Hope this will help you.

    http://sqlity.blogspot.com/2008/03/partition-table-example.html

    Abhijit - http://abhijitmore.wordpress.com

  • RE: can any body tell mefulltex index

    Fulltext indexes are used when we would like to implement wide search, like finding Therasure/Word within the sentence.

    E.G: Google Search/ in Job site you search the Job Description, Location,...

    Abhijit - http://abhijitmore.wordpress.com

  • RE: Generate Insert script

    There may be the possibilities that table either contains Primary / Identity Field or may not contains any ke, so in that case how do you insert the record ?

    Abhijit - http://abhijitmore.wordpress.com

Viewing 15 posts - 211 through 225 (of 232 total)