Forum Replies Created

Viewing 15 posts - 1,066 through 1,080 (of 2,487 total)

  • RE: BCP COMMAND

    You should use UNC filenames. EG: \\ClientMachine\ClientShare\ClientFile.txt

     

     

    --------------------
    Colt 45 - the original point and click interface

  • RE: BCP COMMAND

    Also, for the best speed you should use BULK INSERT instead. It's much quicker than BCP for importing data.

     

    --------------------
    Colt 45 - the original point and click interface

  • RE: I want to change the owner of the object.............

    What sort of object is 'orgdetail' ??

     

    --------------------
    Colt 45 - the original point and click interface

  • RE: Order By

    Probably more of a VB.Net question than a SQL question. I believe you can specify different sorting and filtering when you use a dataview.

     

     

    --------------------
    Colt 45 - the original point and click interface

  • RE: SQL Views - error messages

    From the information you've posted I'd say the length of the ShipCountry field is shorter than the data you want to put into it. "DestinationSpain" is 16 chars long so...

    --------------------
    Colt 45 - the original point and click interface

  • RE: database file attachment error

    Instead of attach, you'll probably want "Restore" from the backup

    Take a look at Restore Database in Books Online.

     

    --------------------
    Colt 45 - the original point and click interface

  • RE: Reporting Services-reports fail to work when Datasource is on different server than Reporting Services

    You should also note that Windows XP has a limit of 10 concurrent network connections.

     

    --------------------
    Colt 45 - the original point and click interface

  • RE: Datetime problem in transform data task

    Just use the inbuilt DateTime transformation that comes with DTS. No need to fiddlw with ActiveXScripting.

     

    --------------------
    Colt 45 - the original point and click interface

  • RE: searching for documents of stored procedures

    See my reply over here http://www.sqlserver.org.au/forums/ShowPost.aspx?PostID=659#660

     

    --------------------
    Colt 45 - the original point and click interface

  • RE: Faster Response of the Views

    For indexed views, take for example your classic Product hierarchy. In a normalised OLTP system the tables might look like this,

    Product

    ProductID, ProductName

    ProductCategory

    CategoryID, CategoryName

    ProductSubCategory

    SubCategoryID, SubCategoryName

    Normal datawarehousing technique would have you bring...

    --------------------
    Colt 45 - the original point and click interface

  • RE: Summarize expression

    Rather than referring to the fields in the dataset, use the ReportItems collection in the SUM.

    EG: Sum(ReportItems!Balance.Value)

     

    --------------------
    Colt 45 - the original point and click interface

  • RE: Seen This?

    You know ... I suggested ages ago that the "Anything that is NOT about SQL" forum should be excluded from the posts counts

    --------------------
    Colt 45 - the original point and click interface

  • RE: Reporting Services and passing Parameters???

    Oops ... should note that this is C# code

     

    --------------------
    Colt 45 - the original point and click interface

  • RE: Reporting Services and passing Parameters???

    Currently of all the parameters in our repotrs we only need to specifically set one per report. Most of the other parameters use system defaults like current date/time/user/etc... Hadn't really thought...

    --------------------
    Colt 45 - the original point and click interface

  • RE: SaveToSQLserverAs Method of the Package2 Object (DTS in SQL-Server)

    Unfortunately you can't. I fell into the same trap and after losing all my wonderful annotations documenting what the package was doing, I've never done it again.

    --------------------
    Colt 45 - the original point and click interface

Viewing 15 posts - 1,066 through 1,080 (of 2,487 total)