Forum Replies Created

Viewing 15 posts - 2,596 through 2,610 (of 2,611 total)

  • RE: VMWare Performance Testing Methodology

    Defining performance is really important.  Most situations would be best suited by trying to run a benchmark of usual activity on your old server, and then do the same on...

  • RE: cannot replicate to subscriber... complicated...

    You may need to go into the client configuration and configure an alias for your subscriber with the appropriate port number.  Multiple instances varies the port number and sometimes this...

  • RE: Newbie needs help on creating a table in a database

    The 'GO' batch terminator is configurable at the client.  Depending on what is running the statement, this may not be a valid terminator.  The script should work without the GO's.

    Your...

  • RE: error while passing parameter???

    What is the data provider of your source?  The error is indicating that you are using a provider that does not support query parameters.

    One good way around this is what...

  • RE: error when trying to access dts from my client enterprise manager

    It may help to know more about the package, but so far the places to start have been covered.

    - service packs need to be the same (and you have already...

  • RE: new to analysis services

    The upgrade advisor / upgrade wizard for SQL Server 2005 will also upgrade Analysis Services and it will work on many Analysis Services 2000 cubes.  If you go this route,...

  • RE: How to setup Parent>>Child>>Child relationship...?

    @@Identity basically returns the identity value for the last record your spid inserted. So, if you were inserting records you need to deal with them sequentially:

    DECLARE @ParentID INT, @ChildID INT,...

  • RE: Table Design Opinion - Requiring CreateDate & CreateUser

    Space not being much of an issue these days, create and last modified user / date is something I require on every table.  Why not have it?  Someone will ask at...

  • RE: ETL with non-linear data files

    I have also used the ActiveX script component in SSIS as a data source for consuming some oddly formatted files.  So far, I have been amazed at the performance I...

  • RE: Group By Question

    Keep it simple.  Just use MAX

    SELECT COUNT(*) AS "COUNT"

     , CAST(StartTimeOrdinal AS INT)

     , CAST(PerformingDayOrdinal AS INT)

     , MAX(Enrolled) AS Enrolled

    FROM OpsSchedule WHERE PerformingDayOrdinal IS NOT NULL

    GROUP BY StartTimeOrdinal, PerformingDayOrdinal

    ORDER BY PerformingDayOrdinal, StartTimeOrdinal

    If...

  • RE: DTS EXPORT

    This is typically indicating a network connection error.  The first thing to do is take as much ot of the picture as possible.  If you can use terminal services or...

  • RE: Flat File on a CD ROM Destination.

    You may want to simplify this a bit by splitting the two actions.  There are command line utilities that will copy a file from your hard drive to a CD...

  • RE: last salary drawn record for employees

    You will never run out of options on this one, you can use EXISTS / NOT EXISTS for these as well.

    SELECT

     H.[Employee Code]

     , H.Income

     , H.Tax

    FROM

     EmployeeSalaryHistory H

    WHERE

     NOT EXISTS(SELECT H2.[Employee Code] FROM EmployeeSalaryHistory...

  • RE: Using variable as a comuln name in a select

    I don't mean to pick at this on you, but it sounds like you are a bit new at this and dynamic SQL is usually not a good place to...

  • RE: Domain migration headaches

    If I am following - you are running into the problem that the domain is stripped off the server login when the user is created for the database.  This can be...

Viewing 15 posts - 2,596 through 2,610 (of 2,611 total)