Forum Replies Created

Viewing 15 posts - 1,636 through 1,650 (of 7,164 total)

  • RE: invalid character in input file

    Â is a valid ANSI character as far as SSIS and SQL Server are concerned, Latin1 codepoint 194 to be exact. Truncation could mean that the string length exceeds what...

    There are no special teachers of virtue, because virtue is taught by the whole community.
    --Plato

  • RE: invalid character in input file

    If the data source is a file and its failing in SSIS then SQL is not going to help you unless you can get the data from the file into...

    There are no special teachers of virtue, because virtue is taught by the whole community.
    --Plato

  • RE: inserting data from one table to another and want to create primary key at same time

    I see it. Change this:

    RowNum = ROW_NUMBER() OVER (PARTITION BY Software_Name_Raw ORDER BY Software_Name_Raw),

    to

    RowNum = ROW_NUMBER() OVER (PARTITION BY Software_Name_Original ORDER BY Software_Name_Original),

    There are no special teachers of virtue, because virtue is taught by the whole community.
    --Plato

  • RE: Attempt to fetch logical page (1:440) in database 2 failed. It belongs to allocation unit 422212869292032 not to 6269010747738816512.

    BuntyBoy (3/12/2013)


    Please check if your tempDB is being shrunk too regularly?

    Hopefully this is not the case in anyone's environment as shrinking tempdb is a risky thing to do and there...

    There are no special teachers of virtue, because virtue is taught by the whole community.
    --Plato

  • RE: inserting data from one table to another and want to create primary key at same time

    alan_lynch (3/12/2013)


    Hi Guys.

    Thanks for all your comments. Anyway going back to the original question...

    Yeah, we can get distracted delving too far into the details 😀

    ...will it be a definate that...

    There are no special teachers of virtue, because virtue is taught by the whole community.
    --Plato

  • RE: Permissions for DTEXEC

    No bother at all. Happy you got it sorted.

    There are no special teachers of virtue, because virtue is taught by the whole community.
    --Plato

  • RE: Permissions for DTEXEC

    Chrissy321 (3/12/2013)


    Thank you for responding to my narrative.

    Yes I am using xp_cmdshell. I get the same error when I add the SQL Server service account to the sysadmin, that...

    There are no special teachers of virtue, because virtue is taught by the whole community.
    --Plato

  • RE: inserting data from one table to another and want to create primary key at same time

    COALESCE too...

    There are no special teachers of virtue, because virtue is taught by the whole community.
    --Plato

  • RE: inserting data from one table to another and want to create primary key at same time

    The base column would, as I understand it, always come across as-is in terms of it's NULL/NOT NULL property if selected straightaway in a SELECT...INTO. By 'not copying NULLability' I...

    There are no special teachers of virtue, because virtue is taught by the whole community.
    --Plato

  • RE: scheduling job

    You can in 2008 and up, and maybe in later service packs of 2005, but in any case you may not want to do that. In 2005, and in some...

    There are no special teachers of virtue, because virtue is taught by the whole community.
    --Plato

  • RE: inserting data from one table to another and want to create primary key at same time

    Eugene Elutin (3/12/2013)I agree that there is no rule of thum for using SELECT ... INTO over INSERT ... SELECT, however I always start with SELECT ... INTO before considering...

    There are no special teachers of virtue, because virtue is taught by the whole community.
    --Plato

  • RE: SQL Cached Plans - MPA

    That's my understanding as well. All memory allocation is now coming from the same allocator and the best known side-effect of that change is that the 'max server memory' option...

    There are no special teachers of virtue, because virtue is taught by the whole community.
    --Plato

  • RE: SQL Cached Plans - MPA

    I could find nothing in my 2008 Internals book (Delaney) that would explain the difference. The differences are odd but are nothing that I expect will ever affect how I...

    There are no special teachers of virtue, because virtue is taught by the whole community.
    --Plato

  • RE: Encryption doubts

    winmansoft (3/12/2013)


    I just had look at this [/url] nice article.

    Here symmetric key encrypted using certificate. There is also option to encrypt it by using password. So which one is better?

    It...

    There are no special teachers of virtue, because virtue is taught by the whole community.
    --Plato

  • RE: inserting data from one table to another and want to create primary key at same time

    What do you mean by "content"?

    There are no special teachers of virtue, because virtue is taught by the whole community.
    --Plato

Viewing 15 posts - 1,636 through 1,650 (of 7,164 total)