Forum Replies Created

Viewing 15 posts - 1,126 through 1,140 (of 1,186 total)

  • RE: MCDBA

    Pro/Gar,

    You may also want to check http://www.brainbench.com. They have some decent materials but will charge.

    I am currently studying as well and am using Microsoft Press books...

  • RE: DB Indexes

    I agree with the others. Also, you may want to look at your WHERE clauses to ensure that your are using Indexes.

    Run Profiler and see if you have some...

  • RE: Copy data

    Is the ID field an IDENTITY field?? If it is you can SET IDENTITY_INSERT ON

    Then you can insert your identity from table a into table b.

    AJ Ahrens

    SQL DBA

    Revenue Assurance...

  • RE: Must declare the variable

    If you change what you are doing (in keeping with 540) from a lot of SELECT INTO * and UPDATE * to

    DECLARE @PROC_START_ID int

    INSERT INTO pricelist_trace (proc_start_time)

    VALUES (GetDate())

    SELECT...

  • RE: Database Size

    I run the following on our system when the SHRINKDATABASE doesn't work properly

    For this example the Database is named DB and the MDF is named DB_Data.MDF

    DBCC SHRINKFILE(DB_Data, [enter size to...

  • RE: Stored Procedure Execution Problems

    Ali,

    Be careful of your insert statements as well. If the order of the columns changes from either your select * or your insert into your code will fail.

    If...

  • RE: Can you run SQL server and IIS on same box?

    One thing you can do is set-up the table(s) so that the SQL login that is used by the web application can only INSERT and not SELECT/UPDATE/DELETE. Also, you...

  • RE: SQLSERV.EXE eating up all memory

    I would definitely listen to Antares and Prab and set-up Profiler. You may need to do the "tweaks" for the memory but the real problem is the amount of...

  • RE: Schduled Job not running

    You may also want to select PER step to write to a log. This might also give clues to why steps fail as well.

    Glad your problem is fixed

    AJ Ahrens

    SQL...

  • RE: Transact-SQL Debugger

    I have 1 developer that uses this tool. First time I have ever EVEN seen it. Personally I dont like the tool.

    We had problems with it after converting...

  • RE: Network libraries TCP/IP Named Pipes

    Quick question.

    When you changed to the new area did you change the network segment? I know that network traffic works best "named pipe" over WAN and between physical locations...

  • RE: DBA's vs Developers

    I would like to add to what Steve Jones has said about experience and the whole "right" thing.

    Even if you think you may have the answer it is better to...

  • RE: DBA's vs Developers

    I have been lucky in my training path as well to be mentored by someone who trained themselves into a DBA position.

    I worked for several years with him (I cam...

  • RE: Inserting more than one value for same field

    In that case you would have to do multiple different returns (to avoid dups)

    In the case of my SQL statement sample could you just add WHERE accidentId = n??

    This way...

  • RE: Inserting more than one value for same field

    I would probably create something like the following:

    SELECT WitnessFirstName, WitnessSecondName

    FROM WitnessTable

    ORDER BY WitnessId

    This way it returns the data in the proper order for you to populate back into your form.

    It...

Viewing 15 posts - 1,126 through 1,140 (of 1,186 total)