Welcome to Sign in | Help

Re: The log file for database 'tempdb' is full.

  •  02-15-2007, 11:14 AM

    Re: The log file for database 'tempdb' is full.

    Pentru a obţine lista tabelelor care nu au primary key poţi folosi următorul query:

    SELECT name FROM sysobjects WHERE xtype='U' AND id NOT IN (
        SELECT parent_obj FROM sysobjects WHERE xtype='PK'
    ) AND OBJECTPROPERTY(id,'IsMSShipped')=0

    Răzvan

View Complete Thread
Powered by Community Server (Commercial Edition), by Telligent Systems