Forum Replies Created

Viewing 15 posts - 1,846 through 1,860 (of 2,010 total)

  • RE: Bulk import (Again) with csv files

    After Re-Reading the Section in BOL on SET_QuotedIdentified I decided this probably wouldn't work for you.  I believe the real solution will be to use a format file.  This way...

    To help us help you read this[/url]For better help with performance problems please read this[/url]

  • RE: Bulk import (Again) with csv files

    Do you have any control over the way the import file is created?  If so, can you change the delimiter from a ',' to something that won't be included in...

    To help us help you read this[/url]For better help with performance problems please read this[/url]

  • RE: query records by a date string (not including time)

    You need to use it once for each date...

    WHERE created_date BETWEEN DATEADD(mmDATEDIFF(mm,0,'08/01/2006'), 0)  -- Eq to {d '2006-08-01 00:00:00'} or 08/01/2006 00:00:00  

          AND DATEADD(mmDATEDIFF(mm,0,'08/02/2006'), 0)  --Eq to {d '2006-08-02 00:00:00'} or 08/02/2006 00:00:00

    It drops any time portion from a date...

    To help us help you read this[/url]For better help with performance problems please read this[/url]

  • RE: query records by a date string (not including time)

    Depending on the size of the table yyou are querying the cast may begin to perform poorly...  Another Alternative that you'll actually be able to pass a datetime to as...

    To help us help you read this[/url]For better help with performance problems please read this[/url]

  • RE: xp_cmdshell passing more than 8000 chars

    Since you're writing out a file anyway, why not use DTS?  You can call your DTS Package through DTSRUN, since you're already using XP command shell I figure this shouldn't...

    To help us help you read this[/url]For better help with performance problems please read this[/url]

  • RE: Updating data from 1 table to another table in continuos loop

    So you just want to copy all of your records from table b to table A?  If that's the idea have a go with this...

    INSERT INTO tableA

    To help us help you read this[/url]For better help with performance problems please read this[/url]

  • RE: Wearing Hats

    Although my title is 'database analyst', I spend a decent portion of my time as a VB developer and general IT lackey as well.

    To help us help you read this[/url]For better help with performance problems please read this[/url]

  • RE: slow slow sproc

    Are you setting variables inside of your sproc?  I've seen issues where if you have a statement like

    DECLARE @MyVar

    SELECT *

    FROM tblMytable

    WHERE col1 = @Myvar

    If the variable doesn't have a value,...

    To help us help you read this[/url]For better help with performance problems please read this[/url]

  • RE: IMPORTING AND EXPORTING DATA

    Could you please be a bit more specific about the errors you are receiving?

    To help us help you read this[/url]For better help with performance problems please read this[/url]

  • RE: PowerPro

    They wouldn't tbe talking about this powERPro would they??

    http://www.powerpro.co.in/indexpage.htm

    To help us help you read this[/url]For better help with performance problems please read this[/url]

  • RE: Update based on columns returned in select statement

    Yes, absolutly. 

    Sorry for the typo.

    To help us help you read this[/url]For better help with performance problems please read this[/url]

  • RE: database connection string

    It seems to me the answer to your qurstion would be... It Depends...

    What are you trying to do?  What kind of code are your attempting to do this in?

    To help us help you read this[/url]For better help with performance problems please read this[/url]

  • RE: Update based on columns returned in select statement

    Don't know if this will help with your True/false issues , but it may.  Try using NULLIF to help get the proper data.

    NULLIF(AT_Active, 'False') <> 'True'

    So if the value is...

    To help us help you read this[/url]For better help with performance problems please read this[/url]

  • RE: invalid data value from source table

    I dont' know if this will help or not, but 01/01/1900 is what you get when you cast '' as a datetime.  You get 01/10/1899 when you subtract 365 from...

    To help us help you read this[/url]For better help with performance problems please read this[/url]

  • RE: Software Pricing

    I agree about the RS bit.  Also how many apps out there already consume way more memory than they really need to.  I could see some companies deciding that they...

    To help us help you read this[/url]For better help with performance problems please read this[/url]

Viewing 15 posts - 1,846 through 1,860 (of 2,010 total)