Forum Replies Created

Viewing 15 posts - 181 through 195 (of 389 total)

  • RE: SSIS error 77

    KumarSQLDBA (9/14/2012)


    I am getting that error while executing my SSIS packages to load data from csv files into sql.

    But packages executed successfully without fixing that error.:-):-)

    Interesting 🙂

  • RE: SSIS error 77

    KumarSQLDBA (9/14/2012)


    Hi Guys,

    I am getting below error.

    Error77System.UnauthorizedAccessException: Access to the path 'E:\Backup_data\lity_dump\Automation_script\lity\lity\bin\Package.dtsx' is denied. at System.IO.__Error.WinIOError(Int32 errorCode, String maybeFullPath) at System.IO.File.SetAttributes(String path,...

  • RE: Dynamic Select in cursor

    gorenak (9/14/2012)


    Hi sorry for question, but I didn`t find answer.

    can i do something like;

    declare @i int

    cursor

    begin

    select [ @i] from table -- or some other name...

  • RE: Dropping indexes

    Catcha (9/14/2012)


    Yes, with recreating the index I will use the following order

    Non-clustered -> primary key -> clustered

    So rebuilding of whole table will be performed last.

    Thought?

    Again I would...

  • RE: Lowest Value between two columns

    hoseam (9/14/2012)


    Hi

    I have this code below and I need calculate the last Amount, which has to be the lowest value between [Original_Investment_Value] and (Encashment_Value + [Top-Up_Commission]), I need to return...

  • RE: Datatype Of A Column

    Shadab Shah (9/13/2012)


    subbareddy542 (9/13/2012)


    PLS TRY BELOW CODE..

    SELECT TABLE_NAME,COLUMN_NAME,DATA_TYPE,CHARACTER_MAXIMUM_LENGTH,NUMERIC_PRECISION,NUMERIC_SCALE FROM INFORMATION_SCHEMA.COLUMNS

    WHERE TABLE_NAME

    IN(SELECT name FROM sys.tables)

    ORDER BY TABLE_NAME

    Thanks Subbareddy for the solution. But i am trying to learn SQL Server. So...

  • RE: Dropping indexes

    Catcha (9/13/2012)


    4 non-clustered, 1 clustered and 1 primary key.

    For bulk insert.

    But do you think that dropping the index will save your time ?

    Because as you mentioned that the table...

  • RE: In SSIS package Need to Create new table Dynamically for each 1000 Records

    venkatesh.b 88975 (9/13/2012)


    Dear all,

    I had a requirement like, I have...

  • RE: Today's Random Word!

    SQLRNNR (9/12/2012)


    jasona.work (9/12/2012)


    SQLRNNR (9/12/2012)


    premeditated

    Precrime

    minority

    Reservation 🙁

  • RE: Puzzle

    Anju Renjith (9/12/2012)


    Step:1

    CREATE TABLE tbl_Group_Test

    (

    _ID INT IDENTITY,

    _Place VARCHAR(50),

    _Name VARCHAR(100)

    )

    Step:2

    INSERT INTO tbl_Group_Test VALUES('Tamil Nadu','Abdul Kalam')

    INSERT INTO tbl_Group_Test VALUES('Tamil Nadu','Karunanidhi')

    INSERT INTO tbl_Group_Test VALUES('Tamil Nadu','Jayalalitha')

    INSERT INTO tbl_Group_Test VALUES('Tamil Nadu','Robin Singh')

    INSERT INTO tbl_Group_Test...

  • RE: Excel Import - row order

    danielfountain (9/12/2012)


    Hey all,

    When you import data from SSIS - how does it work with the row order?

    Does the row order stay the same in the excel file as it would...

  • RE: problem in customising a result set .plz help..

    suvo.kundu (9/10/2012)


    I am getting the out put of a query as

    SN NodeName NodeValue

    1...

  • RE: New assignment on database testing

    Thanks to all for your valuable inputs 🙂

  • RE: New assignment on database testing

    opc.three (9/6/2012)


    Wow, tough assignment. Are your team members skilled as developers? i.e. will they be writing unit tests to exercise code other developers have written? What kind of tools will...

  • RE: CASE STATEMENTS

    vivekkam (9/5/2012)


    I have two identical queries with only one filter difference between the two queries. Can anybody suggest me a solution using "case" statement as how I can reduce the...

Viewing 15 posts - 181 through 195 (of 389 total)