Forum Replies Created

Viewing 15 posts - 1,786 through 1,800 (of 2,268 total)

  • RE: How to convert datatype varchar to int?

    You cannot convert it to an int if there are CHARS in the cloumn as well.

    FYI, the code for converting to an int is

    CAST(YourField as Int)

  • RE: database shrinking issue !!!!!!!

    bhuvnesh.dogra (11/28/2008)


    Actually ,,,if i have a database with total size 100gb ,used : 87 gb and free 5 gb

    then

    i would shrink it upto 80 gb

    If am reading this...

  • RE: IDENTITY KEY

    shmuel_v (11/27/2008)


    Hi,

    First, you can't change the column to identity.

    Why not? do you have any proof of this..?

  • RE: split and merge table

    Mazharuddin Ehsan (11/27/2008)


    You can split the data out into two seperate staging tables, one for Firstname and One for LastName

    Then use another dataflow to load these both up and...

  • RE: SP error on run

    yes check that the data types in the views match the data types in the table you are inserting data into.

    You may be able to fix this issue in the...

  • RE: split and merge table

    You can split the data out into two seperate staging tables, one for Firstname and One for LastName

    Then use another dataflow to load these both up and join them...

  • RE: SP error on run

    It looks like you are inserting a value into a row that is too big,

    check that that your input datatypes and size match that of the column they are...

  • RE: SP error on run

    It is hard to say what the problem is with out seeing the procedure that is causing the problems.. Post it here is you want some constuctive help..

  • RE: "Web Services Task" Configuration

    I dont really know anything about SharePoint, does it have a WebService that you can call? or can you access the database behined it?

    Setting up a web-service task does...

  • RE: Poor performing SP

    From having a quick look at this a few things stand out as bad performing code;

    -While loop at the start, A while loop is not usualy a good idea...

  • RE: "Web Services Task" Configuration

    it is in SSIS which is a part of BIDS / VS.NET that is installed with SQL 2005.

    have you used SSIS before?

  • RE: "Web Services Task" Configuration

    Web Service task is under the control flow , not the data flow, so look for it in there.

    It is fairly straight foward to configure just add the URL...

  • RE: SSIS Data Type

    Since you are using SSIS to do the import you are better off using SSIS to do the conversion.

    You need to add Data Conversion Transformation between your data...

  • RE: Versioning the stored procedure

    There is some manual work involved and it is not 100% ideal but i am getting better at using it. I work within an open-source development team and they all...

  • RE: Versioning the stored procedure

    Glen (11/20/2008)


    H-m-m...

    Are you sure? I was under imression that Subversion does not have a direct integration with SQL server...

    Yeah I am sure, have been doing it here for the...

Viewing 15 posts - 1,786 through 1,800 (of 2,268 total)