Forum Replies Created

Viewing 15 posts - 4,006 through 4,020 (of 14,953 total)

  • RE: How to check if my DB mails are running?

    If you're using DBMail (sp_send_DBMail), then all the e-mails are queued and logged in msdb, and you can query the relevant tables for status, etc., pretty easily. That's what...

  • RE: your spare time?

    I've played EVE enough to have two characters with Tech III ships and one with a Command ship (those aren't easy to get into). It's fun enough for a...

  • RE: Using OUTPUT INTO with an INSERT INTO

    It can't pull those in Insert Select. It's one of those, "What was Microsoft thinking when they did that?" kind of things. Especially since you can get that...

  • RE: your spare time?

    GilaMonster (6/10/2011)


    GSquared (6/10/2011)


    MMORPGs (currently playing RIFT)

    Is it any good? I'm waiting for The Old Republic in anticipation...

    As far as I'm concerned, Rift rocks.

    It's got significant similarity to WoW, but...

  • RE: How do you avoid dynamic SQL with this code?

    It would look something like this:

    -- Input Parameters faked for script

    DECLARE @StartDate CHAR(10),

    @EndDate CHAR(10),

    @PatientPersonGUID VARCHAR(25),

    @TCPersonGUID VARCHAR(25),

    ...

  • RE: your spare time?

    Spend time with my wife, spend time with my dogs, volunteer work, study, MMORPGs (currently playing RIFT), lots of movies (theatre and Netflix), cooking, eating.

  • RE: How to import lots of text files into table?

    That's the kind of thing SSIS does really well at.

    It can query a folder for a list of files, or operate off of a query to a database table, and...

  • RE: Using SELECT INTO a bad practice?

    Here are the two options most commonly used:

    Select <column list>

    Into #MyTempTable

    From MyTable;

    create table #MyTempTable (colum list and definitions);

    Insert Into #MyTempTable (column list)

    Select (column list)

    From MyTable;

    In both cases, SQL Server has...

  • RE: Using SELECT INTO a bad practice?

    Select Into for temp tables used to be a bad practice in pre-SQL 2000 days because of schema locks in tempdb. The datum that it is a bad practice...

  • RE: How to have a 'text' type column included in an index

    "text" datatype fields aren't actually stored in the clustered index. They are stored in an extended space. So, no, they really can't be part of an index, even...

  • RE: Log File Space during Updates of a Table

    Log space used != table space used.

    Have you dug into a log parsing technique like DBCC LOG?

    There's a lot going on in there. Everything needed to make sure that any...

  • RE: Stored Proc. Cycling through database

    Crispin Proctor (6/10/2011)


    simplier: EXECUTE sp_msforeachdb 'USE ? PRINT DB_NAME()'

    Considering the query and return results he's trying for, I discounted the system proc. The input command would be complex to...

  • RE: Null values

    NullIf isn't the way to go for what you're doing. It will render your whole string null.

    What you need is a Case statement. Check if the value of...

  • RE: Mathematical Theory (controversy!)

    toddasd (6/8/2011)


    GSquared (6/8/2011)


    toddasd (6/7/2011)


    Richard Warr (6/6/2011)


    toddasd (6/6/2011)


    Answer this: do you consider this to be true: 1/3 = 0.333...?

    No, however that is the only way you can represent 1/3 as a...

  • RE: Basic Index Question

    coronaride (6/10/2011)


    Thanks Gail - that helps.

    G-Squared - I see where you're coming from and, if I wasn't normalizing addresses out into CASS certified columns or making first/last name entities (our...

Viewing 15 posts - 4,006 through 4,020 (of 14,953 total)