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?

     

  • 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...

  • RE: Bulk Insert

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

    Why don't you try dts?

     

  • 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...

  • 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'

  • RE: Bulk Insert

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

     

  • 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,...

  • 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
     

  • RE: Bulk Insert

    Try this

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

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

     

  • RE: Need to Tune Query

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

     

  • RE: ODBC support JOINS?

     

    Oho you got me man…

     

    June 16, 2006 at 7:12 am

    #644245

  • RE: Bulk Insert

    In excel tab is the delimiter.

  • RE: help!!! tempdb detached

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

    Thanks for the info.

  • 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...

  • 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.

     

     

     

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