Forum Replies Created

Viewing 15 posts - 4,111 through 4,125 (of 7,636 total)

  • RE: Common Mistakes in T-SQL

    True, but that's not "SQL" so much as it is an implementation artifact of T-SQL and SQL Server. And it's got so many conditions on it that I frankly...

  • RE: Building a UI For SSIS Package in VB.NET 2008

    Great. What is the answer?

  • RE: aagghh! More XQuery trouble

    Matt Miller (12/31/2008)


    Have you tried simply using SQLXML? Using XQuery for this in SQL is reminiscent of buying a hammer and some nails, but then throwing away the hammer...

  • RE: Lost MDF file but I have LDF file

    Heh. Only 20 replies, but over 2400 views on this thread...

    So, lest the extremely important lesson of this discussion might be lost on any of the lurkers out there,...

  • RE: Changing Taxonomy

    You know, as long as we are on the subject: One thing that I would really like to see is a "Challenges" forum. Someplace were one of us...

  • RE: How to get the name of XML elements with TSQL?

    Paul (6/7/2008)


    I have been working on this problem and have a something that gives me what I want, but it takes 7 seconds to process. Any ideas why this is...

  • RE: Sql Server 2000 and 2008 install

    You know, I am not sure that you can have a named instance of SQL 2000, without it also being the default instance. I have a very strong recollection...

  • RE: Common Mistakes in T-SQL

    Also: Forgetting that the order that AND clauses are evaluated in at run-time has nothing to do with the order that they are written.

    So:WHERE IsNumeric(StringColumn)

    AND CAST(StringColumn As NUMERIC)...

  • RE: Common Mistakes in T-SQL

    Oh without a doubt:

    Believing that rows in a table have an order.

    And it's even more pernicious corollary: Order(rows returned) = Order(rows inserted)

  • RE: sp_msforeachdb not processing each DB

    Are you getting any errors?

    Suggest you try using 'USE [?]; ... ' instead.

  • RE: sql job

    Then search for that command in msdb.dbo.sysjobsteps of the calling server.

  • RE: sql job

    kiransuram19 (12/31/2008)


    In order to run one job from another both the servers should be linked servers .Then we can run the job from another server.

    Yes, how are you doing this?...

  • RE: GRANT EXECUTE ON xp_cmdshell to loginless USER

    That said, I do however know of three indirect ways to effectively do this. The first is through SSIS as Ninja has already mentioned.

    The second is to create a...

  • RE: GRANT EXECUTE ON xp_cmdshell to loginless USER

    I do not believe that there is any direct way to do this (effectively GRANT EXECUTE on xp_cmdshell). The problem is as follows:

    First, the ability to use xp_cmdshell is...

  • RE: sql job

    How are you "calling" one job from another?

Viewing 15 posts - 4,111 through 4,125 (of 7,636 total)