Forum Replies Created

Viewing 15 posts - 5,851 through 5,865 (of 7,164 total)

  • RE: Transfer Objects task

    Have you looked at the XML of the package? It might be as easy as creating and adding your own XML nodes to the file. If it looks doable you...

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

  • RE: installing service pack

    Why in the world would you ever want to even attempt that?

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

  • RE: Database Design

    Regarding collations:

    I have seen folks on this site posting problems related to storing data in two different languages in the same column.

    Regarding file storage:

    Here is a good whitepaper I have...

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

  • RE: SQL Server Memory usage by session wise

    See if this gets you close:

    http://www.sqlservercentral.com/Forums/Topic872499-146-1.aspx#bm872724

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

  • RE: Unable to Run Trigger with SqlBulkCopy, Please Help

    I would not use a trigger in this way. Avoid triggers where possible. Is it necessary here? Why not allow the bulk copy to complete and then call a stored...

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

  • RE: Ceate a Table from inside view

    The only thing a VIEW can contain is a SELECT statement. What you want is a stored procedure. Or, if you change your concrete tables to table variables you could...

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

  • RE: Migrating a Visual FoxPro Database to a SQL Database

    patel.shashank702 18199 (6/22/2011)


    Dear Sir,

    I wanna to Migrating a Visual FoxPro Database to a SQL Database.

    kindly suggest me any possible tool or methods.

    awaiting for ur response

    thanks

    Shashank Patel

    http://blogs.msdn.com/b/sqlcat/archive/2008/01/25/foxpro-to-sql-server-migration-experience.aspx

    As an aside, regarding you...

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

  • RE: Join Question

    tfifield (6/24/2011)


    Just to add my 2 cents to what Sean posted. You should think of column names as objects in the database. The Employee table shouldn't have a...

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

  • RE: Help with replacing Superscript 2

    You're welcome 🙂

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

  • RE: Help with replacing Superscript 2

    In the case of all Unicode data you can use a binary collation to prevent the overlap of the number 2 with its superscript counterpart.

    --CREATE TABLE STATEMENT

    SET ANSI_NULLS ON

    GO

    SET QUOTED_IDENTIFIER...

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

  • RE: Help with replacing Superscript 2

    A conversion is happening because you're asking to replace an NCHAR in a VARCHAR column.

    --CREATE TABLE STATEMENT

    SET ANSI_NULLS ON

    GO

    SET QUOTED_IDENTIFIER ON

    GO

    SET ANSI_PADDING ON

    GO

    CREATE TABLE [dbo].[TwoTable]

    (

    ...

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

  • RE: Potential issues with different collations

    Jayanth_Kurup (6/25/2011)


    worktables use the collation as specified for the database in which the operation is being performed

    Can you cite an article?

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

  • RE: PGP Encryption in SSIS

    http://ssisextensions.codeplex.com/ is 2008 only.

    Cozy Roc has a 2005 component but I just looked at it and it appears as if it support OpenPGP only, i.e. it does not support Idea....

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

  • RE: Potential issues with different collations

    I think I am the same page as you now, sorry, I missed your *I* inference in your OP.

    The intertubes did not turn much up for me, as I suspect...

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

  • RE: Which one is better select * into # temp from tableA Vs create #temp table insert into...

    The optimization issue is what keeps me away from table variables. I had heard about the recompile option but it did not sway my view on things given the expense...

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

Viewing 15 posts - 5,851 through 5,865 (of 7,164 total)