Forum Replies Created

Viewing 15 posts - 2,131 through 2,145 (of 2,339 total)

  • RE: NULL Aggregates

    Maybe the question should have been worded like this:

    According to the first paragraph about aggregates in Books Online, which of these aggregate functions does not ignore NULL values?

  • RE: Renaming multiple file names inside a folder

    REN *_09162014.txt *.txt

  • RE: Server Maintenence Question

    Maybe.

    We did not have direct control of our servers in our old data center. The windows admins would push patches at some point during the week, and re-boot on...

  • RE: We Want Maturity, But Is It Fun?

    My first IT job was a similar situation. When the phone rang, we wrote code. Or changed the light bulbs. Or fixed the copier. Or upgraded a network.

    Basically anything...

  • RE: Lists

    DrKiller (12/23/2014)


    wow what a complex way of doing it.

    I'm usually just doing this 🙂

    DECLARE @tmpString VARCHAR(MAX)

    SELECT @tmpString = COALESCE(@tmpString + ', ' + productname, productname) FROM Header

    SELECT @tmpString

    This is a...

  • RE: Convert datetime to bigint

    This:

    20141222133915

    is more readable than this

    2014-12-22 10:42:21.693

    or

    2014-12-22

    Really?

  • RE: Question about recruiters

    There are significant differences sometimes. Again, I could tell you stories!!!

    The other thing to consider is that there seems to be a lot of employee turnover at placement firms,...

  • RE: Question about recruiters

    Agree. There are some good ones, and some bad ones.

    In my area (Pennsylvania), there seems to be lot of recruiters that really did not look at your resume....

  • RE: this query runs to long how can I speed it up????

    By using the series of in-line queries, you have created a situation where this table is hit for each row of the outside query.

    You are using a CASE statement, so...

  • RE: How can I DENY create indexes to a DDL_Admin group

    A DDL trigger will work.

    Something like:

    CREATE TRIGGER [DDL_NoIndexes] ON DATABASE

    FOR create_index, alter_index

    AS

    ROLLBACK

    PRINT 'Please don''t do that!'

    GO

    SET ANSI_NULLS OFF

    GO

    SET QUOTED_IDENTIFIER OFF

    GO

    ENABLE TRIGGER [DDL_NoIndexes] ON DATABASE

    GO

    I have the same issue. The developers...

  • RE: Put back procedure?

    When you create a publication, there is an option to replicate schema changes which will propagate changes to the subscription automatically.

    But not always! If you add a...

  • RE: DB log growth issue

    If this is a one time process to get things back in control, Ok, my apologies.

    But, as I read your post, it seemed as if it was your normal process....

  • RE: resolve sql issue by not using cursor or while loop

    kevin_nikolai (11/25/2014)


    --Step 2:

    /*

    With 2 cursors in 2nd proc (original), if I select 9 campuses, query finishes in 4 minutes 10 seconds.

    After removal of 2 cursors from 2nd proc (step 1...

  • RE: DB log growth issue

    Dave, what problem are you trying to fix? What you are describing is normal. Unless you are running out of disk space, there is not a problem here....

  • RE: Database Owner

    jpbankston (11/17/2014)


    Somewhat in line with the original question, I have a user whose login is used by the dbo user on a few databases. Consequently, that user has permissions...

Viewing 15 posts - 2,131 through 2,145 (of 2,339 total)