Forum Replies Created

Viewing 15 posts - 1,876 through 1,890 (of 2,387 total)

  • RE: 2 T-SQL problems

    quote:


    How do I drop column(S) for a table but ignored whatsoever constraint created for the table?


  • RE: Restore MDF and LDF file

    The database should be attached back as long as you properly shut down the services. Can you post statement/commands here to show how did you try to get the database...

  • RE: Limiting Error Log Sizes

    Generally, SQL Server errorlog files are quite small in term of size. Why they want to do this?

    You could set quota to log folder to SQL Server service account.

  • RE: Backup to different server

    The UNC path should be \\server\drive$\directory\filename.BAK. Make sure SQL Server services account are able to write to it.

  • RE: Log shipping to Two backup servers

    You can't use the built in log shipping wizard to do that in SQL Server but you can create your own log shipping solution to constantly copy database and log...

  • RE: Removal of Foreign Key's from DB.

    Another work around.

    declare @foreignkey sysname

    declare @referencingtable sysname

    declare @cmd sysname

    DECLARE fkey_cursor CURSOR FOR SELECT object_name(constid), object_name(fkeyid) from sysreferences

    OPEN fkey_cursor

    FETCH NEXT FROM fkey_cursor INTO @foreignkey, @referencingtable

    WHILE @@FETCH_STATUS = 0

    BEGIN

    select...

  • RE: space used

    Database size = MDF files size + LDF files size.

    Reserved = data + index_size + unused

    MDF files size = reserved + unallocated space

  • RE: Table to Datafile mapping

    SELECT sf.groupid AS GroupID, substring(sf.groupname,1,30) AS FilegroupName,

    substring(so.name,1,30) AS ObjectName

    FROM sysobjects so

    INNER JOIN sysindexes si ON so.id = si.id

    INNER JOIN sysfilegroups sf ON si.groupid = sf.groupid

    WHERE si.indid = 0 and...

  • RE: Data Tranfer from production to datawarehousing DB

    The processes that extract data from production database, transform and load them into your DW depend on your business requirements.

    See "Extracting Data from Operational Systems", "Cleansing and Transforming Data",...

  • RE: Transaction modes

    See "Autocommit Transactions", "Implicit Transactions" and "SET IMPLICIT_TRANSACTIONS" for explaination and examples in BOL

  • RE: Log Shipping newbie

    quote:


    6. Specify the Transaction Log Share - Here, I put the share I created on the standby server with UNC \\machine\MSSQL\LogShipping\Test
  • RE: sp_runwebtask failing after SP4 update.

    quote:


    the builtin/admins group ( which I usually disable ) must be enabled for the web assistant to work.


    May 2, 2003 at 9:44 am

    #456021

  • RE: maximum input parameters for stored procedure

    Thanks both.

  • RE: Running SQL Server 6.5 & 2000 on same server

    You can install them in same machine and you can run either instance of Server 2000 or the instance of SQL Server 6.5, but not both at the same time.

    ...

  • RE: DB in a Network Drive

    Enable trace flag 1807 to configure SQL Server with network-based database files.

    See KB http://support.microsoft.com/default.aspx?scid=kb;en-us;304261 for more info.

Viewing 15 posts - 1,876 through 1,890 (of 2,387 total)