Forum Replies Created

Viewing 15 posts - 106 through 120 (of 174 total)

  • RE: Permissions and DBO question

    Some more additional information:

    You can drop them from node (where SQL server reside) local NT group. A couple minutes ago I tested that. Than I successfully changed dbowner from non existing local...

  • RE: Permissions and DBO question

    If they doesn't work for your company so why their logins are still in your SQL server?? You should change the dbowner and other objects, where they are dbo,  owner...

  • RE: Permissions and DBO question

    In theory yes you can change it to sa. But on my oppinion it would be better to change to a existing domain login, who have sa rights. Sa as db...

  • RE: Drop/Create Scripts

    Why cann't you simply create a backup of your DB ? Then after restoring it you will have the DB structure and the data. Friendly speaking I donn't understand why...

  • RE: Log File Too Big

    Once I had something like that. I couldn't do this through a QA but successfully did it through an EM. But first I backed up my DB and then shrinked...

  • RE: Cluster failover causes

    Thanks Nicholas. You have mentioned about physical or hardware problems here. What's about the software problems? Have you ever experenced or maybe heard about it? I mean maybe there are...

  • RE: Can I install SQL Server Ent. Edition on top of Std. Edition ?

    In theory you could upgrade.

    Don't forget to make logins script and backups of your DBs in case of a some misunderstanding

     

  • RE: SP result to table

    On my oppinion  it is needed to keep the query from returning metadata only. I had this problem a  little bit  earlier than you so somewhere I found out this....

  • RE: SP result to table

    In this case try the following proc first:

    exec sp_serveroption 'ServerName', 'data access', 'true'

    Did it help?

  • RE: SP result to table

    Hi,

    try the following script

    select * into #tmp1

    from openquery(ZZZSERVER,'set fmtonly off;exec master.dbo.sp_helpdb')

    select * from #tmp1

     

    Good Luck!

  • RE: attach all the datababses

    Why is the separate folder being  the main problem for you? Why cann't you simply write particular .mdf and .ldf files location in a script as it was suggested previously? Maybe I...

  • RE: attach all the datababses

    ... or you can do this through Enterprise Manager. Point to Databases then All Tasks and then Attach Database...

    If you have a lot of DBs and need to attach them...

  • RE: User ID

    You can try to write your  objects cursor and then execute sp_changeobjectowner

  • RE: Changing Default Log File location in Enterprise Manager?

    Strange. In normal circumstances it should work.

    If you created DB with the CREATE DATABASE statement,  Change/add the following registry keys:

    HKLM\Software\Microsoft\MSSQLServer\MSSQLServer

    VALUE: DefaultData

    VALUE: DefaultLog

    It should help, but be carefull, because of wrong change...

Viewing 15 posts - 106 through 120 (of 174 total)