Forum Replies Created

Viewing 15 posts - 2,176 through 2,190 (of 2,487 total)

  • RE: Error uploading data into SQL server table

    If you don't need to import the ID from the spreadsheet then make sure you exclude that column in the transformations tab.

    Hope this helps

    Phill Carter

    --------------------

    Colt 45 - the original point...

  • RE: Appending data to csv files

    Using the text file connection, DTS will re-create the file each time the datapump runs. To append to an existing file you would need to output to a second file...

  • RE: DTC ??

    How is your app connecting to the server? Are you sure you're connecting to the new server?

    Hope this helps

    Phill Carter

    --------------------

    Colt 45 - the original point and click interface

  • RE: Source Control for SP in .NET

    From the Server Explorer pane, add a dataconnection. Then expand the tree till you get Stored Procedures. Right-click on the Stroed Procedures folder and choose 'Add to Source Control'

    Then you...

  • RE: DB autogrew when it should not have

    Steve is right, reindexing a clustered index can require 120% of the space allocated to the index.

    Hope this helps

    Phill Carter

    --------------------

    Colt 45 - the original point and click interface

  • RE: DBCC loginfo in SQL Server 2000?

    If you want to check the available space in the t-logs use,

    DBCC SQLPERF(LOGSPACE)

    This will tell you the size and the % used.

    Other than that, I'd go with Allen's suggestion. Assess...

  • RE: decimal data type

    Just use the CAST, or CONVERT, function to re-format the field when you display it.

    eg: CAST(Field as decimal(18,2))

    Make sure you put the double brackets on the end, I always forget...

  • RE: 5409045121009 hits 500 posts

    Ditto on the newsletter idea.

    I'm betting Frank has his father, mother, brother, sister and wife all subscribed

    Hope this helps

    Phill Carter

    --------------------

    Colt 45 - the original point and...

  • RE: NULL Date = 30/12/1899

    Hmmm ... it'd have to be an Analysis Services default. Can you do some sort of display formula? Like only display the date if its > 1/1/1900.

    Hope this helps

    Phill Carter

    --------------------

    Colt...

  • RE: NULL Date = 30/12/1899

    Is there any default specified for the field?

    Hope this helps

    Phill Carter

    --------------------

    Colt 45 - the original point and click interface

  • RE: mccork has hit 500 post

    Ok so I'm a stick in the mud

    I just think that with our ever growing community (I see more and more users with single figure posts)...

  • RE: Seven Monitoring Scripts

    Just what I was looking for to drive my ASP status report.

    One other tip for #7, I modified the SELECT statement to be like this,

    
    
    SELECT TOP...
  • RE: mccork has hit 500 post

    Ok, now not meaning to rain on anyones parade, I know a majority of the posting is exceptionally helpful, but...

    How can people be labelled SQL Server Guru's when a lot...

  • RE: ERROR on INSERTING

    What sort of connection are you using as the source for this statement? The "Error Source: Microsoft JET Database Engine" would indicate that it's not SQL Server.

    Hope this helps

    Phill Carter

    --------------------

    Colt...

  • RE: How do I call DOS Copy from ActiveX vbscript file

    If you want to execute a DOS command in VBScript you need to create a Windows Shell object. Then you can execute any command you want.

    Eg:

    Dim WshShell, oExec

    Set WshShell =...

Viewing 15 posts - 2,176 through 2,190 (of 2,487 total)