Forum Replies Created

Viewing 15 posts - 25,351 through 25,365 (of 26,487 total)

  • RE: TRUNCATE LOG SQL EMBEDDED FOR WSS3.0

    There is an admistration part to WSS, but I haven't been able to find where it is yet, mostly because I am at home right now. We had an...

  • RE: TRUNCATE LOG SQL EMBEDDED FOR WSS3.0

    I had this issue a while back. You won't be able to do this through SSMS. Unfortuately, I don't remember exactly how I finally backed up and truncated...

  • RE: How to execute SP from master db in current db

    Actually, since your stored proc sp_ResetDB, was created in the master database, by just saying EXEC sp_ResetDB, SQL Server looked first in the master database and finding it there ran...

  • RE: How to execute SP from master db in current db

    Have you tried executing like this: exec sp_ResetDB

  • RE: proc

    Mike, I'd either end SQLCmd1 and SQLCmd2 or start SQLCmd2 and SQLCmd3 with the UNION operator.

  • RE: proc

    Haven't had that big if a dynamic sql requirement that I am aware of at least. I have several sql scripts that I use to create tables, views, and...

  • RE: All I Want For Christmas Is ...

    Merry Christmas!

    I have to agree with Jeff. There isn't much that I really want or could use. I have a great family that is supportive of my career...

  • RE: Domains

    True, true, but to say that a tinyint holds values between 0 and 255 not 0 and 127 is also misleading in the context of the question. The given...

  • RE: xp_sendmail issue

    Actually, SQL Mail on SQL Server 2000 requires a MAPI client be installed on the server (Outlook, not Outlook Express). xp_sendmail uses MAPI to send mail. I don't...

  • RE: Domains

    True, a tinyint can hold a value between 0 and 255, but the DOMAIN of a specific column defined as a tinyint may be 0 to 127. You can...

  • RE: proc

    You need to use dynamic sql if that is what you are trying to do.

    declare @SQLCmd nvarchar(4000)

    set @SQLCmd = 'use ' + @DBName + ';select * from dbo.myTable'

    exec (@SQLCmd)

    The above...

  • RE: Should DBA's need to know the physical details of a SAN??

    Not being that familiar with SAN's myself, my answer is an unqualified yes. We are getting a new SAN here, and I expressly asked that the disks used by...

  • RE: Is it possible to join the result set of a stored proc with a table?

    Antares686 (11/30/2007)


    Jeff Moden (11/30/2007)


    Heh... at that point... I'd be thinking "BEER"! 😀

    Smirnof Ice for me or maybe it's big brother Smirnof Black, not a coffee or beer drinker.

    I'm with you...

  • RE: Is it possible to join the result set of a stored proc with a table?

    Not directly, as SL Server does not allow you to use a stored procedure like a table. You will need to load the output of the stored procedure into...

  • RE: Degree

    Actually, nothing to apologize for there. Sometimes that is how you get help for problems you are facing. Someone mentions something in a thread that triggers a request...

Viewing 15 posts - 25,351 through 25,365 (of 26,487 total)