Forum Replies Created

Viewing 15 posts - 151 through 165 (of 323 total)

  • RE: Be Prepared

    Al has a good idea.  As a teen, before cell phones and when dinosaurs roamed N. America, I lived in rural Illinois.  I had a VHF ham radio setup so...

    There is no "i" in team, but idiot has two.
  • RE: Puzzler: Three consecutive rows

    Thanks, Peter. 

    There is no "i" in team, but idiot has two.
  • RE: Creating a datafile via UDF, Sproc?

    Nicely done, Michael and Jeff.

    There is no "i" in team, but idiot has two.
  • RE: Making tables Readonly during a DTS run

    If you can finagle all the transformations into a single transaction, you can do this:

    SET TRANSACTION ISOLATION LEVEL SERIALIZABLE;

    BEGIN TRANSACTION

    -- do your transformations here

    ...

    COMMIT TRANSACTION

    There are some good articles on this site...

    There is no "i" in team, but idiot has two.
  • RE: SQL Mail

    From BOL:

    The computer running SQL Server must be set up as an e-mail client. SQL Server Enterprise Manager is used to assign an e-mail account and password to the SQL...

    There is no "i" in team, but idiot has two.
  • RE: Trying to update one table from another on-the-fly

    OK, that was weird.  Let's try it again.

    You can create an INSERT trigger on the table into which you insert the CSV data from your network logon.  Something along the...

    There is no "i" in team, but idiot has two.
  • RE: Trying to update one table from another on-the-fly

    You can create an INSERT trigger on the table into which you insert the CSV data from your network logon.  Something along the lines of

    CREATE TRIGGER AfterInsertLogonCSV ON LogonCSVAFTER...
    There is no "i" in team, but idiot has two.
  • RE: Dynamic SQL

    Joel, schleep is correct.  You could, however, use a base table or a local temp table.

    There is no "i" in team, but idiot has two.
  • RE: Which transaction log am I using?

    OK, that makes sense.  Thanks.

    There is no "i" in team, but idiot has two.
  • RE: How does MS Access impact Tempdb?

    "Typically, you know when tempdb is being hammered when you are in enterprise manager and you refresh the view on tempdb.  In our environment, if tempdb is being hammered, we...

    There is no "i" in team, but idiot has two.
  • RE: Data Import Problem

    OP, did you get it going?  By now, you probably could have typed it into EM. 

    There is no "i" in team, but idiot has two.
  • RE: Data Import Problem

    Do you actually have a rectangle in the spreadsheet?  There are the same number of columns in every row? 

    There is no "i" in team, but idiot has two.
  • RE: Data Import Problem

    <long shot>

    What if you open the spreadsheet, format the SSN field as general, and then try to import it into a varchar(9)?

    </long shot>

    There is no "i" in team, but idiot has two.
  • RE: Data Import Problem

    Have you defined the table explicitly, or are you letting DTS do that for you?  If not, you might want to

    CREATE TABLE dbo.NameSsn (EmployeeName varchar(50), EmployeeSsn varchar(9))

    then in your...

    There is no "i" in team, but idiot has two.
  • RE: What happens when tempdb fills a disk?

    Or, option B, what if I add a file to tempdb on my D: drive (which has 136GB free)?  If I don't let tempdb autogrow, but instead set the primary file to 146GB and...

    There is no "i" in team, but idiot has two.

Viewing 15 posts - 151 through 165 (of 323 total)