Forum Replies Created

Viewing 15 posts - 19,246 through 19,260 (of 26,484 total)

  • RE: Slicing and Dicing

    ChrisMoix (8/12/2009)


    blandry said:

    Last time we hired a DBA I was stunned at how many applicants had good SQL skills, but Zero .NET, Zero CLR skills. I know, I know, some...

  • RE: Notify when using a production database

    Faiyaaz (8/12/2009)


    Understandable, but what I mean is, like a notification popup when using the production db, a popup occurs warning you that you are on production. Why I ask, is...

  • RE: Performance in using Select "TOP 5000000 ..." in sql

    Please read the second article in my signature block regarding asking for assistance on performance problems. Based on your post, there really isn't much we can do to help...

  • RE: Massive database growth

    What is the fill factor on the table?

  • RE: Trying to avoid an cluster index scan and use best practices for application code

    NewbieCoding (8/12/2009)


    CREATE PROCEDURE [dbo].[p_getCallStats]

    @Col1 int = null,

    @col2 datetime = NULL,

    @col3 int = NULL

    AS

    BEGIN

    -- SET NOCOUNT ON added to prevent extra result sets from

    -- interfering with SELECT statements.

    SET NOCOUNT ON

    ...

  • RE: Urgent reply required- How to uninstall SQL 2005 SP3?

    You will have to reinstall SQL Server 2005. There is no uninstall at this time for service packs. I think this may change in the future, possibly with...

  • RE: Recursive Querry to get all Childs

    descentflower (8/12/2009)


    Thanks :w00t: thats what i needed

    Is this magic of recursion ?

    I will be very thankful if you give a brief idea of that query.

    Thanks again.

    Read about Recursive CTE's...

  • RE: There's a Lot to Learn From Even Simple Puzzles

    rja.carnegie (8/12/2009)


    A previous exercise elsewhere, which I think was about testing for primes in the fewest characters of script, was where I learned you can use @ as a variable...

  • RE: How to view transaction log for SQL Server 2005

    WilliamB (8/12/2009)


    Nevermind, I found it... 😀

    What did you find? Details please, someone else may have the same question.

  • RE: temp tables

    Not really sure what you are asking here. Could you provide more information about what you are trying to accomplish?

  • RE: Recursive Querry to get all Childs

    Hope this gets you started in the right direction. All I did was mimic the sample code from BOL (Books Online).

    create table #t1 (id int,pid int,s varchar(100))

    insert into #t1...

  • RE: NewBie Help - Group by

    To get help faster and get working tested code, please read the first article I reference in my signature block regarding asking for assistance.

    To really help you, we need the...

  • RE: SQL w/ MAX function does not work

    Why not change this:

    AND (VV.Fund_Valuation_Date = (SELECT MAX (Fund_Valuation_Date)

    FROM dbo.Fund_Valuation VVV

    WHERE VVV.Fund_Valuation_Date < '2006-09-01'

    AND VVV.Fund_Number = V.Fund_Number

    AND VVV.Class_Type_Abbr_Name = V.Class_Type_Abbr_Name

    AND VVV.Class_Type_Category = V.Class_Type_Category))

    to this:

    AND VV.Fund_Valuation_Date = (SELECT MAX (Fund_Valuation_Date)

    FROM dbo.Fund_Valuation...

  • RE: Script Task to Configure FTP Connection

    Actually, I may have figured it out. Took a lot of digging and guess work. Preliminary testing looks good, but it is late, and I really don't feel...

  • RE: PIVOT problem : produces multiple lines

    drew.allen (8/11/2009)


    alef (8/11/2009)


    I've tried the solution of SSCrazy Eights and this solution is perfect.

    Is there an explanation why your solution is working and mine not?

    I think that this line from...

Viewing 15 posts - 19,246 through 19,260 (of 26,484 total)