Forum Replies Created

Viewing 15 posts - 1,351 through 1,365 (of 1,654 total)

  • RE: Filegroups (sysfilegroups) query question

    Oeps,

    I just realized that you posted that in the SQL 2000 discussion. But marking the proc as system object will solve your problem.

    Markus

  • RE: Filegroups (sysfilegroups) query question

    The behaviour of user defined stroed procedures starting with the sp_ prefix has changed in SQL 2005. In SQL 2000 they behaved exactly like a system stored procedure, which means...

  • RE: Issues with SQL Server 2005 on a Virtual Machine (VM)

    James,

    I did work on a project where they intended to migrate to whole datacenter to ESX server on HP64 blades and a HP SAN. After extensive testing we had to...

  • RE: Is SQL2005 supported on VMware

    As far as I know, Microsoft doesn't support either windows nor SQL server on VMware only MS Virtual Server.

    At least about a year ago that's what they told us. But...

  • RE: Fuzzy Searching...

    I can't think of any way using T-SQL which achieves exactly what you want. If you have SQL 2005, the fuzzy lookup transformation in SSIS should deliver what you want....

  • RE: Maintenance plan failing

    Pepe,

    there can be lots of different reasons why your plan fails, but since the consistency check is one of the failing steps I would start with running DBCC CHECKDB from a...

  • RE: Decimal Values less than 1 and negative! :(

    Shelley,

    it works for me. Could you post the ddl and your insert procedures. Do you get an error? Which service pack level do you have?

    Markus

     

  • RE: Ideas for SQLServerCentral.com

    I'm a susbscriber for more than 4 years and I must say it's one of the best sites I visit. The layout is simple and clear and don't need any...

  • RE: Server registration of sql2005

    No, you can't register a 2005 server in EM. You can though connect from Query Analyzer to a 2005 instance, but some (new) functionality will not be available and some...

  • RE: sp_helpDB only works from master

    Jeff,

    thank's for your reply. I agree with you that it shouldn't be a big issue. What confuses me is the fact that BOL says that turning this option off is...

  • RE: maintenance Plan running but nothing done

    Anders,

    first of all you should check the logfile to see what has been done and what hasn't. Second I know there was an issue with file cleanup in the RTM...

  • RE: corrupt dbo login account...

    Rocker,

    dbo is a database user, not a login. A login (sa) needs to be linked to this user.

    sa on the otherhand is a SQL login and it cannot be deleted,...

  • RE: corrupt dbo login account...

    Exec sp_changedbowner 'sa'

    This will make the sa owner of the current database.

    Markus

  • RE: getting the list of databases with full recovery model

    Where are two ways of doing this. One would be converting the status value from sysdatabases, the other is using the DATABASEPROPERTYEX function. Here's one example :

    CREATE TABLE #SimpleDB...

  • RE: sp_helpDB only works from master

    I think I found the problem. On all databases there sp_helpdb reported an error, the database option 'default to local cursor' was set to ON. After changing this to OFF,...

Viewing 15 posts - 1,351 through 1,365 (of 1,654 total)