Forum Replies Created

Viewing 15 posts - 14,146 through 14,160 (of 26,486 total)

  • RE: Are the posted questions getting worse?

    For something a little different, I thought I'd put The Thread back on topic for a bit as I go running back to the TITD (which I haven't visited in...

  • RE: Updating a table based on another

    SQLTestUser (11/3/2011)


    I have two tables

    A and B

    A has A.ID,A.Name, A.add, A.lastname

    B has

    B has B.ID,B.Name, B.add, B.lastname,B.otherfield

    and i need to copy B into A with a query but i...

  • RE: Newbie DBS needs SQL index rebuild help!

    KrishDBA (11/3/2011)


    Try to compress the table and index which will gain more space and improve performance.

    Not possible in SQL Server 2005 and depends on what edition of SQL Server 2008...

  • RE: Are the posted questions getting worse?

    Well, my daughter Kirisa was just inducted into the National Honor Society ths evening!

  • RE: Knowledge capicity of a DBA

    Welcome to the fold.

    When I started with MS SQL Server 6.5, I had 2 MOC classes to get me started. Everything else I learned on my own as our...

  • RE: Script to enable Auto-growth

    Kenneth Fisher-475792 (11/3/2011)


    Lynn Pettis (11/3/2011)


    Tarsha Shannon (11/2/2011)


    Thanks for the replies everyone!

    SSCrazy,

    I actually need to enable autogrowth for both the data and log file for each database, the maxsize would...

  • RE: tempdb memory

    Remember, TempDB is used by all the databases, not just for temporary tables and table variables, but also for queries that require sorting (ORDER BY, DISTINCT, GROUP BY). I...

  • RE: Characters in field names

    Lowell (11/3/2011)


    sure but you'll have to make sure you always wrap it in brackets when refering to it:

    WHERE [Fixed/Float/Step (Interest Rate Type)] = 42

    to avoid that, you want to go...

  • RE: How to migrate over 100 SSIS packages into a new solution quickly

    I have to agree with modifying the SSIS packeages to be dynamically configured for SOURCE and DESTINATION. If the only thing changing in the packages is that, nothing else,...

  • RE: Query Help

    Make this change to your FROM clause, see if that gives you what you are looking for.

    FROM Calendar LEFT JOIN

    TimeTracking ON Calendar.CalendarDate = TimeTracking.Date1 AND TimeTracking.UserName = 'someguy'

    This is the...

  • RE: Query Help

    allan.madriaga (11/3/2011)


    Hi Jared. The sum of NULLs actually do appear if I take out the following where clause:

    WHERE ... AND (TimeTracking.UserName = 'someguy')

    But when I insert that where clause...

  • RE: Script to enable Auto-growth

    Tarsha Shannon (11/2/2011)


    Thanks for the replies everyone!

    SSCrazy,

    I actually need to enable autogrowth for both the data and log file for each database, the maxsize would be 150MB for data...

  • RE: Query Help

    Not sure if you got the jist of what others said so I will give another answer.

    In your WHERE clause, you have the following:

    AND (TimeTracking.UserName = 'someguy')

    The WHERE clause...

  • RE: Moving tables from one database to another database

    IIRC, the Import/Export Wizard only move data. It will contruct the basic table but does not create any of the indexes, foreign keys, etc.

  • RE: 10GB CSV import into SQL 2008

    If using BCP or SSIS, be sure to set an apprpriate batch size (number of rows per batch). You don't want the import to run as a single batch.

Viewing 15 posts - 14,146 through 14,160 (of 26,486 total)