Forum Replies Created

Viewing 15 posts - 61 through 75 (of 116 total)

  • RE: Bulk Insert

    Did you check your data?, dose it has any extra tab in between to columns?

     

    ------------
    Prakash Sawant

    http://psawant.blogspot.com

  • RE: SP

    As far as i think you can achieve all this in one sp itself.

    First use bulk insert in your sp by building the dynamic sql

    After the data is inserted...

    ------------
    Prakash Sawant

    http://psawant.blogspot.com

  • RE: Bulk Insert

    May be your data is having tab in between the row's.

    Why don't you try dts?

     

    ------------
    Prakash Sawant

    http://psawant.blogspot.com

  • RE: list of user sp''''s from master db

    I found one more way to get the result, but I am not sure will this give the perfect result all the time.

    select...

    ------------
    Prakash Sawant

    http://psawant.blogspot.com

  • RE: list of user sp''''s from master db

    This query should work in best way....

     

    SELECT *

      FROM sysobjects

    WHERE OBJECTPROPERTY(id,'IsMSShipped')=0

       AND xtype = 'P'

    ------------
    Prakash Sawant

    http://psawant.blogspot.com

  • RE: Bulk Insert

    I think the data in file for column 15 in first row is more then the column size in DB. 

     

    ------------
    Prakash Sawant

    http://psawant.blogspot.com

  • RE: SQL Server 2000 Corrupt database/file

    Let me first explain about MSDB.

    if your db has some jobs shedule on it, all the information related to those jobs are stored in MSDB db which is system db,...

    ------------
    Prakash Sawant

    http://psawant.blogspot.com

  • RE: list of user sp''''s from master db

    Following is the code i got of getting my result.
     
    SELECT name FROM master..sysobjects WHERE xtype = 'P' and status > 0
     

    ------------
    Prakash Sawant

    http://psawant.blogspot.com

  • RE: Bulk Insert

    Try this

    FIELDTERMINATOR = ''\t'',-- this is for tab

    ROWTERMINATOR = ''\n'' -- this is for new line 

     

    ------------
    Prakash Sawant

    http://psawant.blogspot.com

  • RE: Need to Tune Query

    Try creating non-clustered index for table T2888_1900_1 on which your joning condition works.

     

    ------------
    Prakash Sawant

    http://psawant.blogspot.com

  • RE: ODBC support JOINS?

     

    Oho you got me man…

     

    ------------
    Prakash Sawant

    http://psawant.blogspot.com

  • RE: Bulk Insert

    In excel tab is the delimiter.

    ------------
    Prakash Sawant

    http://psawant.blogspot.com

  • RE: help!!! tempdb detached

    This is some thing very usefull information which i was not aware of.

    Thanks for the info.

    ------------
    Prakash Sawant

    http://psawant.blogspot.com

  • RE: Stored Procedure

    Then you need to pass 3 parameter's, table name, column list & values.

    It will be easy for you to do a direst insert instead of doing it through the sp...

    ------------
    Prakash Sawant

    http://psawant.blogspot.com

  • RE: ODBC support JOINS?

    Can you post the query?

    As far as i know you can't join the DBCC command as its nothing but system sp & you con't join sp's.

     

     

     

    ------------
    Prakash Sawant

    http://psawant.blogspot.com

  • Viewing 15 posts - 61 through 75 (of 116 total)