Forum Replies Created

Viewing 15 posts - 106 through 120 (of 1,085 total)

  • RE: Stored Procedure Recovery

    Do you have a database backup?  I take it there is no version control on your SP's, hence no old version saved? 

  • RE: Calling a function from within a query that needs to execute dynamic SQL

    First, I do not understand how this works if the UDF will not allow dynamic queries...?

    SELECT DISTINCT CategoryID, QCategoryName

  • RE: TSQL Question

    You may want to make a reference table for the possible code selections, (or if you have one, add another column) and you can select from that table inside the...

  • RE: Need Top 3 or Top n number of rows from a group of rows

    Try this:

    DECLARE @Task TABLE( PK integer IDENTITY(1,1),

                                            Last_Name varchar(10),

                                            First_Name varchar(10),   

                                            Task_Number integer,

                                            Detail_Action_Date smalldatetime)

    INSERT INTO @Task

    SELECT 'Jones', 'Rod',  2000, '09/29/06' UNION ALL...

  • RE: Binary data

    Look up CASE in BOL...

  • RE: Please help! Really STRANGE query behavior!

    I'm grasping at straws here too, but can you add one row to PH2007 and see if that works? 

  • RE: DBA and SQL developer

    Have a great weekend you bunch of trouble makers! 

  • RE: DBA and SQL developer

    NOT TOUCHING THAT ONE!!!   He could slam three floors down just with an UPDATE statement...   

  • RE: DBA and SQL developer

    Again, Sushila, I think your vault may getting too big! 

    Is the clone sayin' it's sane?  Or is this some religious connotation?

     

     

  • RE: DBA and SQL developer

    I have no idea what this means?  Do you understand, "Fiesty Sushila"? 

  • RE: DBA and SQL developer

    Well, he is fiesty like the ol' RGR'us....  I dunno.  Maybe too much time on the keyboard has affected his brain...  Or maybe its a clone and they made an...

  • RE: DBA and SQL developer

    Glad to see things are back to normal and everyone is complimenting one another...   

     

     

    (Ninja was semi-explained on another post, but I do...

  • RE: DBA and SQL developer

    I can read, funny guys!    You can quit talking about me in the 3rd person...   

    (and...

  • RE: UPDATE comparing to tables and get error

    Do you have to UPDATE?  Can you TRUNCATE DB1.dbo.t1 and re-populate it with the tempDB.dbo.T1Temp data, (although I'm not sure why this is coming from tempDB)? 

  • RE: DBA and SQL developer

    Wait a minute!  Does that mean that I have to put "bulldozer" in my resume? 

Viewing 15 posts - 106 through 120 (of 1,085 total)