Forum Replies Created

Viewing 15 posts - 2,371 through 2,385 (of 7,164 total)

  • RE: View not working since moving database from SQL 2000 to SQL 2008

    Ed Wagner (1/14/2013)


    If you need one, you have to include the TOP n clause in the SELECT statement.

    ...or TOP (n) PERCENT

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

  • RE: sql procedure

    Ed Wagner (1/14/2013)


    In SQL Server, you could use the following:

    SELECT 'Your performance is ' + CONVERT(Varchar, grade);

    I would consult the MySQL documentation under "string concatenation" for details on how it's...

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

  • RE: SELECT vs INSERT INTO

    Steven Willis (1/14/2013)


    ...if for some reason additional keys are deemed necessary for a temp table care must be taken to make sure the keys have unique names. For example:

    DECLARE

    ...

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

  • RE: Issues With DB2 CHARACTER Field Source - SSIS 2008

    paul.j.kemna (1/14/2013)


    A user on another forum suggested that I dump the error output into a text file.

    I did this and I believe it has shed some light on the...

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

  • RE: Issues With DB2 CHARACTER Field Source - SSIS 2008

    I do not work with DB2 much and am not sure how great the driver is or how well the engine reports its own metadata when SSIS asks. Does DB2...

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

  • RE: query SSIS-Task-Properties using T-SQL

    The SSIS package definitions are stored in msdb.dbo.sysssispackages. Because the definition is XML you can cast it to the XML data type and then operate on it using XQuery. A...

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

  • RE: Issues With DB2 CHARACTER Field Source - SSIS 2008

    Output. External is just what SSIS thinks the source is.

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

  • RE: sql procedure

    If you download this SQLCLR component...

    http://groupconcat.codeplex.com/%5B/url%5D

    ...then you can write code like this in SQL Server very similar to what you would expect to be able to write in MySQL. Adding...

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

  • RE: logging output from Execute T-SQL task

    Jeff Moden (1/13/2013)


    bobd125 (1/10/2013)


    I have a Execute T-SQL task which purged records from table. I would like to record in a log file the record count of how many...

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

  • RE: Finding actual number of physical cpu installed

    I like to check to see how many CPUs are online as well:

    -- cpu overview

    SELECT osi.cpu_count AS LogicalCpuCount,

    osi.hyperthread_ratio AS HyperthreadCoreRatio,

    ...

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

  • RE: Problem with using SQL Server linked server to MySQL database

    I meant in the Linked Server node in SSMS Object Explorer, under Providers, right click MSDASQL and go to Properties. What do you have setup for options?

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

  • RE: Extract only numbers from string which contains special characters too

    mister.magoo (1/13/2013)


    And another Tally type version, but seems faster to me...

    That's solid. I meant to come back to this because using RANK seemed clunky and I knew there had to...

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

  • RE: Test results report

    You're quite welcome. I am happy it helped.

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

  • RE: SQL ADVANCE COPY/MOVE AND RENAME FUNCTIONS

    Jeff Moden (1/13/2013)


    Hmmm. I can see your point. I mean about not doing file handling in SQL Server and that those types of things should be done well...

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

  • RE: Index rebuild fragmentation criteria confusion

    2) page density below 75%- index Rebuild or Reorganize?

    It depends on the fillfactor. If you chose 80% you may not want to perform maintenance if page density is at 75%.

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

Viewing 15 posts - 2,371 through 2,385 (of 7,164 total)