Forum Replies Created

Viewing 15 posts - 6,166 through 6,180 (of 7,468 total)

  • RE: Server and Database Collation Questions

    just to add to John Rowan's reply :

    - With alter database, only new created objects will use the new collation ! Existing...

  • RE: How to gain Exclusive Access to a database

    perform in a single batch :

    ALTER DATABASE yourdb Set RESTRICTED_USER , READ_only WITH ROLLBACK IMMEDIATE

    Restore database yourdb from .....

  • RE: MSSQLSERVER service terminated unexpectedly

    Was there a backup job running at the time of crach ?

    Check the backup job for errors (e.g. filecontention /directorycontention of the backupfiles may cause a servercrash with sql7)

  • RE: Calling UDF without dbo.function

    From sql2000 books online :

    Calling User-Defined Functions

    When calling a scalar user-defined function, you must supply at least a two-part name:

    SELECT *, MyUser.MyScalarFunction()FROM MyTable

    Table-valued functions can be called by using a...

  • RE: how to delete table permanent

    Is there a view with the same name ?

    Objectnames must be unique within a schema.

  • RE: How to limit acess?

    some do it checking how many clients at a certain point in time are connected to the server and comparing that number to parameter-value stored in the db or registry.

    This...

  • RE: TLOG backup vs full database backup

    First of all you'll need a full db backup !

    After that, you can perform T-log backups. Keep in mind you'll need the set (logbackup1, logbu2,...) to be able to restore...

  • RE: Steps to delete the TLOG

    the transactionlog wil only shrink if the active block is at the beginning of the trx-log file !

    So you may have to repeat this sequence until you succeed !

    -- getest...

  • RE: 64 bit Yukon and Linked Server to Access

    - can you connect to your access db using the 64-bit odbc ?

    %SystemRoot%\system32\odbcad32.exe

    - can you connect to your access db using the 32-bit odbc ?

    C:\WINDOWS\SysWOW64\odbcad32.exe

     

    btw I also noticed the copy...

  • RE: how to delete table permanent

    - are you connected as sysadmin / dbo / tablecreator ?

    - which schema did you specify ?

     

  • RE: SSMS cannot connect to SQL2000 virtual server

    Because also some (??) production applications were suffering this unavailability, I faileover the instance and everithing worked back just fine !.

    After reboot of the node ( because all instances of...

  • RE: concerns? permanent table in tempdb

    you can also use ##-temptables (#-temptb = local temp tb, ##-temptb = global temp tb).

    You can create normal tables in tempdb, but I wouldn't advise to use it because when...

  • RE: 2005 Installation Problem

    if you are using the GUI, you have an option to install a new instance (so not upgrating the existing instance of sql2000)

  • RE: progress

    maybe just some CPR

    split the updatequery in chunks so it does not lockout the whole of the table (unless you realy need the...

  • RE: add a role to all databases?

    after you've added the roll to all existing user-db, also add it to model database.

    that database is used (copied) to create every new db !

     

Viewing 15 posts - 6,166 through 6,180 (of 7,468 total)