Forum Replies Created

Viewing 15 posts - 1,771 through 1,785 (of 2,267 total)

  • RE: change data type

    nazaninahmady_sh (12/3/2008)


    thank you for your reply

    i want to get data with (ntext) type from one Database and input them in a another Database with (navarchar) type and for is purpose...

  • RE: Format of output from a sql query 'To File'

    add

    SET NOCOUNT ON

    to the top of your t-sql code.

  • RE: SQL 2005 Data Type Error

    You are putting CLIENT with a datatype of varchar(255) into nvarchar(30) and nvarchar(100) there is possibilty that the data is too long so you will need to filter...

  • RE: ssis for not entering duplicate file

    What I would do is;

    Add a look-up transformation to look-up against the destination to see if the data exists, If you have a primary key you can join on...

  • RE: change data type

    there is a way;

    CAST(YourTextCol AS NVARCHAR(MAX))

  • RE: Records saved very slow why?

    You may need to provide a bit more information for a complete answer.

    such as;

    how much data is being saved and how are you saving the data, are you...

  • RE: redirecting (error) rows

    I have found the problem with using an error redirect on a destination is that it usually throws an error before it has a chance to re-direct the row.

    What I...

  • RE: varchar versus nvarchar

    I tend to default to using NVARCHAR, unless i can absolutely be certain that there will not be any UniCode data in there. I find the increase in...

  • RE: SQL stored procedure that calls multiple stored procedures in one dataset

    You can call a stored proc from another proc by using the standard EXEC funciton.

    EXEC YourProc

    Be aware though that you will have to be able to handle errors from...

  • RE: Query to Calculate percentages

    what does your table structure look like?

  • RE: disable shutdown button

    Whay are you connecting diretly to the server, rather than using SSMS from your client machine?

  • RE: ForEach Loop forEXCEL File

    SMAZ (12/2/2008)


    Yes, the source excel files are of same structure!

    Could you plz explain more in detail HOW TO SET EXCEL CONNECTION USING EXPRESSION?

    Thanks

    In SSIS simply add a new Excel data...

  • RE: Database testing

    The only way to can be really sure that the results are the same through-out the dev process , is to create a test-harness and use a product like NUnit...

  • RE: Cannot get Full-Text to work

    Sounds like a strange error, I have not encountered this before, perhaps it is a problem with the server or disks. It may be worthwile to get the IT...

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

Viewing 15 posts - 1,771 through 1,785 (of 2,267 total)