Forum Replies Created

Viewing 15 posts - 5,071 through 5,085 (of 5,393 total)

  • RE: Are the posted questions getting worse?

    lmu92 (6/29/2009)


    I'll do it, assuming you're covering travel and accommodation costs as well. 😀

    I'm still offering 5 dollars, better than nothing.

    Anyway better than "I want (you) to cut my grass"!!:-P

    -- Gianluca Sartori

  • RE: Are the posted questions getting worse?

    Gianluca Sartori (6/29/2009)


    lmu92 (6/29/2009)


    Referring to the original purpose of The Thread:

    Any consultant around ready for some charity work?

    This one is perfect for Wayne 😀

    By the way, I still need somebody...

    -- Gianluca Sartori

  • RE: Are the posted questions getting worse?

    lmu92 (6/29/2009)


    Referring to the original purpose of The Thread:

    Any consultant around ready for some charity work?

    This one is perfect for Wayne 😀

    -- Gianluca Sartori

  • RE: Preventing Parsing

    I think you can't avoid using dynamic SQL.

    Well, if you run this statement directly from the program code, it IS dynamic SQL, so you could test for the column...

    -- Gianluca Sartori

  • RE: special character

    You can use ADO or DAO in Access. It only depends on the references you add to the Tools-->References menu in the VBA menu bar.

    See this for more info: http://msdn.microsoft.com/en-us/library/aa164825(office.10).aspx?ppud=4

    MyConnection...

    -- Gianluca Sartori

  • RE: special character

    Did you try with ADODB.Command as I suggested?

    -- Gianluca Sartori

  • RE: Regarding Views

    You could also create synonyms in db1 for the tables in db2.

    I don't like this solution anyway, it's not very clean.

    -- Gianluca Sartori

  • RE: Regarding Views

    You could loop through all views and replace db1 with db2 in the text returned by sp_helptext @viewName.To get an alter statement you will have to replace again CREATE with...

    -- Gianluca Sartori

  • RE: remove/audit unused objects(tables,sps,function)

    I had to code an application to do that. The app got through all sp and added a call to a logging procedure as first instruction.

    -- Gianluca Sartori

  • RE: special character

    Ok, I think I got it from Mike's reply. Your question is a bit hard to understand indeed.

    You can work with a stored procedure as Mike suggested, or build a...

    -- Gianluca Sartori

  • RE: Question about SQL locks

    Exclusive locking applies only to modified rows. I suggest you UPDATE directly.

    Regards

    Gianluca

    -- Gianluca Sartori

  • RE: special character

    This is Visual Basic, I dont' understand what is your problem.

    Can you provide more information?

    What error are you getting?

    Where does the error happen? Visual Basic or SQL Server?

    -- Gianluca Sartori

  • RE: Preventing Parsing

    Try adding the column and then running the create procedure, it should work.

    Regards

    Gianluca

    -- Gianluca Sartori

  • RE: remove/audit unused objects(tables,sps,function)

    It is really difficult to identify unused objects.

    I applied many strategies and I still need to combine them all to be quite sure when I move away unused objects.

    1)...

    -- Gianluca Sartori

  • RE: Which is Better

    I would say "none"...

    I don't see anything that can't be done with a set-based solution, which performs much better. I suggest you to try to convert this into a set...

    -- Gianluca Sartori

Viewing 15 posts - 5,071 through 5,085 (of 5,393 total)