Forum Replies Created

Viewing 15 posts - 16 through 30 (of 85 total)

  • RE: Runnig a DTS package from SPs

    You can use the DTSRun Utility with xp_cmdshell in an SP.

    -JG

  • RE: Connection Failure question

    Look into your Client Network Utility and see if you are using Name Pipes -vs- TCP/IP.

    And Check your odbc configuration to ensure you have a valid ID hitting against SQL...

  • RE: SQL Svr Stored Procs & Multi-Threading??

    I beleive SQL Server manages it's own thread processing, even to a smaller level called fibers.

    -JG

  • RE: SQL Mail

    This is what I am doing:

    I create s imple queyr in an outlook msg body.

    Select * from <atable>

    I send it to the Sql Account.

    I go to QA and execute sp_processmail...

  • RE: Index Tuning

    I agree with Antares, I would capture the queries through SQL Profiler and look for missing stats. In addition run a small (few minutes) trace through the Index tuning wizard....

  • RE: Timeouts - where do I start?

    You should be able to capture enough info to show you where the timeout is occuring, if the transaction process and it is not timeing out in on the SQL...

  • RE: Lockwoodtech Products

    I downloaded the SQL Dev pack as a trial. I am in the justification mode.

    -JG

  • RE: Timeouts - where do I start?

    Have you tried tracing the transaction through SQL Profiler?

    -JG

  • RE: BCP in (Duplicate Key Error)

    I could be wrong... but I beleive the ignore dupe key is best used with T-SQL's Insert. Not BCP. I am not sure if it will work with Builk Insert.

    -JG

  • RE: SQL Mail

    I looked in the script library, but came up empty handed. Was there a scecific script you were refering to that show how to process incoming mail queries?

    -JG

  • RE: Using iNotes for Outlook for SQL Mail

    You will need to sign on as the user with the mail profile, and create the profile on the server.

    -JG

    Edited by - jgee on 04/17/2002 1:31:22 PM

  • RE: Script for deleting duplicates in mulitple tables

    I recommend using a seperate table for the import. Create an index made of all the columns on the table with "Ignore Dupes" checked then populate the rest of your...

  • RE: Script for deleting duplicates in mulitple tables

    There are several ways to eliminate dupes.

    Is this a one time thing? Or do you continually have to scrub do to an import?

    -JG

  • RE: Copy Tables with SQL Server

    SQL-DMO would do the trick. See Script Method under Index on BOL.

    -JG

  • RE: Copy Tables with SQL Server

    One quick way is to use Enterprise Manager and selecting / right clicking on the table, choose Task and then Generate SQL Scripts.

    There are options on what you want to...

Viewing 15 posts - 16 through 30 (of 85 total)