Forum Replies Created

Viewing 15 posts - 151 through 165 (of 583 total)

  • RE: SP4 install on Cluster

    This is interesting, I think my problem is that I am entering the instance name when I should be entering the virtual SQL Server name.  Somehow when I installed the...

  • RE: SP4 install on Cluster

    Correction to post, I can not connect to the instance from a remote box.

  • RE: The Best Job

    I quit being a pharmacist 9 years ago to become a programmer and now am a DBA.  Pharmacy, at least for me, is more stressfull than IT.

    My dream job...

  • RE: SQLServerCentral.com 5 Year Anniversary

    SSC has been my favorite web site since I became a DBA in 2002.  Congratulations!  Thanks also for taking the time to nuture along new authors!  Look forward to seeing...

  • RE: Ntext

    Are you on SQL Server 2005?  If so, try converting the ntext column to

    nvarchar(MAX).  Or, better yet, change the actual column to nvarchar(MAX) if you can.

  • RE: SQLH2: The Free Health, History and Performance Monitoring Tool

    Thanks!

    I just found out from Microsoft that this version does support SQL Server 2000.  They said that a previous version worked with SQL 2005 beta and this version was updated...

  • RE: FTP Task will not work when scheduled as a job!

    Oh, and I'm glad you like the book!  Thanks!

  • RE: FTP Task will not work when scheduled as a job!

    Usually problems like this relate to security -- the job running in a different account than running manually.  But, it doesn't sound like it since it is the FTP part...

  • RE: Adding stored procedures

    Good point.

  • RE: FTP Task will not work when scheduled as a job!

    I would first try running it manually, possibly from VS2005 on the production server first.  Be sure to check the FTP connection manager properties once it is there. 

    Was there...

  • RE: Generate Create Script to Project in Visual Studio 2005 Professional

    In SQL Server 2000, from Enterprise Manager you can script out objects to individual files.  This might be an acceptable work-around for you.

    Unfortunately, in SQL Server 2005, this functionality disappears...

  • RE: Adding stored procedures

    The following answer assumes that this is a T-SQL stored procedure, not a CLR stored procedure:

    The stored proc is saved in the database.  So, you create a stored procedure by running...

  • RE: help in SP

    You can not use "USE" in a stored proc unless you employ dynamic SQL.

    You can fully qualify, for example:

    exec master.dbo.xp_sendmail

     

  • RE: Ntext

    Use caution here, you are not actually grouping by the entire ntext column, only the first 30 character! 

  • RE: Reporting Services - Authentication

    Brian Larson's book "SQL Server 2005 Reporting Services" (Osborne) has a section on custom authentication using the RS security extension. He says that you need the Enterprise edition to do...

Viewing 15 posts - 151 through 165 (of 583 total)