Recreating foreign key not working? two proc one to drop constraint and another to recreate foreign constraint in database?

CREATE PROC [dbo].[SP_DropForeignKeys] 
AS
BEGIN
DECLARE @FKTABLE_OWNER SYSNAME, @FKTABLE_NAME sysname, @FK_Name sysname
DECLARE Cursor_DisableForeignKey CURSOR FOR  
SELECT   schema_name(schema_id), object_name(parent_object_id), name
FROM   sys.foreign_keys
OPEN Cursor_DisableForeignKey
FETCH NEXT FROM   Cursor_DisableForeignKey  
INTO  @FKTABLE_OWNER  , @FKTABLE_NAME, @FK_Name 
DECLARE @SQL nvarchar(max)
WHILE @@FETCH_STATUS = 0   
BEGIN  
SET @SQL  = 'ALTER TABLE [' + @FKTABLE_OWNER + '].[' + @FKTABLE_NAME   
           + ']  DROP CONSTRAINT [' + @FK_NAME + ']'  
select @sql
EXECUTE (@SQL)
FETCH NEXT FROM   Cursor_DisableForeignKey INTO @FKTABLE_OWNER, @FKTABLE_NAME, @FK_Name
END  
CLOSE Cursor_DisableForeignKey
DEALLOCATE Cursor_DisableForeignKey
END
create proc [dbo].[SP_CreateForeignKeys]
as
DECLARE @schema_name sysname;
DECLARE @table_name sysname;
DECLARE @constraint_name sysname;
DECLARE @constraint_object_id int;
DECLARE @referenced_object_name sysname;
DECLARE @is_disabled bit;
DECLARE @is_not_for_replication bit;
DECLARE @is_not_trusted bit;
DECLARE @delete_referential_action tinyint;
DECLARE @update_referential_action tinyint;
DECLARE @tsql nvarchar(4000);
DECLARE @tsql2 nvarchar(4000);
DECLARE @fkCol sysname;
DECLARE @pkCol sysname;
DECLARE @col1 bit;
DECLARE @action char(6);
SET @action = 'CREATE';
DECLARE FKcursor CURSOR FOR
    select OBJECT_SCHEMA_NAME(parent_object_id)
         , OBJECT_NAME(parent_object_id), name, OBJECT_NAME(referenced_object_id)
         , object_id
         , is_disabled, is_not_for_replication, is_not_trusted
         , delete_referential_action, update_referential_action
    from sys.foreign_keys
    order by 1,2;
OPEN FKcursor;
FETCH NEXT FROM FKcursor INTO @schema_name, @table_name, @constraint_name
    , @referenced_object_name, @constraint_object_id
    , @is_disabled, @is_not_for_replication, @is_not_trusted
    , @delete_referential_action, @update_referential_action;
WHILE @@FETCH_STATUS = 0
BEGIN
          BEGIN
        SET @tsql = 'ALTER TABLE '
                  + QUOTENAME(@schema_name) + '.' + QUOTENAME(@table_name)
                  + CASE @is_not_trusted
                        WHEN 0 THEN ' WITH CHECK '
                        ELSE ' WITH NOCHECK '
                    END
                  + ' ADD CONSTRAINT ' + QUOTENAME(@constraint_name)
                  + ' FOREIGN KEY ('
        SET @tsql2 = '';
        DECLARE ColumnCursor CURSOR FOR
            select COL_NAME(fk.parent_object_id, fkc.parent_column_id)
                 , COL_NAME(fk.referenced_object_id, fkc.referenced_column_id)
            from sys.foreign_keys fk
            inner join sys.foreign_key_columns fkc
            on fk.object_id = fkc.constraint_object_id
            where fkc.constraint_object_id = @constraint_object_id
            order by fkc.constraint_column_id;
        OPEN ColumnCursor;
        SET @col1 = 1;
        FETCH NEXT FROM ColumnCursor INTO @fkCol, @pkCol;
        WHILE @@FETCH_STATUS = 0
        BEGIN
            IF (@col1 = 1)
                SET @col1 = 0
            ELSE
            BEGIN
                SET @tsql = @tsql + ',';
                SET @tsql2 = @tsql2 + ',';
            END;
            SET @tsql = @tsql + QUOTENAME(@fkCol);
            SET @tsql2 = @tsql2 + QUOTENAME(@pkCol);
            FETCH NEXT FROM ColumnCursor INTO @fkCol, @pkCol;
        END;
        CLOSE ColumnCursor;
        DEALLOCATE ColumnCursor;
        SET @tsql = @tsql + ' ) REFERENCES ' + QUOTENAME(@schema_name) + '.' + QUOTENAME(@referenced_object_name)
                  + ' (' + @tsql2 + ')';           
        SET @tsql = @tsql
                  + ' ON UPDATE ' + CASE @update_referential_action
                                        WHEN 0 THEN 'NO ACTION '
                                        WHEN 1 THEN 'CASCADE '
                                        WHEN 2 THEN 'SET NULL '
                                        ELSE 'SET DEFAULT '
                                    END
                  + ' ON DELETE ' + CASE @delete_referential_action
                                        WHEN 0 THEN 'NO ACTION '
                                        WHEN 1 THEN 'CASCADE '
                                        WHEN 2 THEN 'SET NULL '
                                        ELSE 'SET DEFAULT '
                                    END
                  + CASE @is_not_for_replication
                        WHEN 1 THEN ' NOT FOR REPLICATION '
                        ELSE ''
                    END
                  + ';';
        END;
    PRINT @tsql;
    IF @action = 'CREATE'
        BEGIN
        SET @tsql = 'ALTER TABLE '
                  + QUOTENAME(@schema_name) + '.' + QUOTENAME(@table_name)
                  + CASE @is_disabled
                        WHEN 0 THEN ' CHECK '
                        ELSE ' NOCHECK '
                    END
                  + 'CONSTRAINT ' + QUOTENAME(@constraint_name)
                  + ';';
        PRINT @tsql;
        END;
    FETCH NEXT FROM FKcursor INTO @schema_name, @table_name, @constraint_name
        , @referenced_object_name, @constraint_object_id
        , @is_disabled, @is_not_for_replication, @is_not_trusted
        , @delete_referential_action, @update_referential_action;
END;
CLOSE FKcursor;
DEALLOCATE FKcursor;
GO
exec [dbo].[SP_DropForeignKeys] 
exec [dbo].[SP_CreateForeignKeys]
droped proc worked perfect but when i execute [dbo].[SP_CreateForeignKeys] and try to see again foreign key constraints but result is empty?
can anybody suggest me what's wrong with these script?

droped proc worked perfect but when i execute [dbo].[SP_CreateForeignKeys] and try to see again foreign key constraints but result is empty?
Well, if you have dropped the keys, you have dropped them. They can't be recreated out of the blue. You need to use modify procedure to save the ALTER TABLE statements in a temp table, drop the keys, truncate the tables, and the run a cursor over the
temp table. In a single transaction, so that you don't lose the keys if the server crashes half-way through.
Erland Sommarskog, SQL Server MVP, [email protected]

Similar Messages

  • Composite primary key as foreign key not working

    i want have two tables
    in one table i make a composite primary key
    and in the other table i refer one of the column of the composite key from the above table as foreign key in this table but this didn't work.
    eg:
    create table temp1
    ( name char2(10),
    ssn# number(10)
    address varchar2(10)
    constraint (cons_1)primary key(name,ssn#) );
    create table temp2
    ( name1 char2(10) references temp1(name),
    add varchar(20));
    this didn't work....can't create temp2 table it's giving error

    The following includes some corrections and some suggestions. Your original code had several problems: missing comma, invalid name, invalid data type, no unique key for the foreign key to reference. The following fixes all of those and adds some meaningful names for the constraints and formats it so that it is easier to read.
    CREATE TABLE temp1
      (name       VARCHAR2 (10),
       ssn#       NUMBER   (10),
       address    VARCHAR2 (10),
       CONSTRAINT temp1_name_ssn#_pk
                  PRIMARY KEY (name, ssn#),
       CONSTRAINT temp1_name_uk
                  UNIQUE (name))
    Table created.
    CREATE TABLE temp2
      (name1      VARCHAR2 (10),
       address    VARCHAR2 (20),
       CONSTRAINT temp2_name1_fk
                  FOREIGN KEY (name1)
                  REFERENCES temp1 (name))
    Table created.

  • Foreign key not working in a table control set on a pop-up window

    Hi Experts,
    I have created a table control using EEWB on BUPA object. I have moved this table control using BUCO transaction to address view. As the address is displayed in BP transaction as a pop-up window, when the error message from the foreign key verification should raise the pop-up window is closed and nothing happens. What I want is the error doesn,t let the window to be closed and show an error message.  Any suggestion to achieve that?
    Thanks in advance.
    Rosa

    Hi,
    Please check demo program DEMO_DYNPRO_TABLE_CONTROL_2.
    Try to copy to custom program and make the following line changes.
    MODULE CHECK_ALL INPUT.
      CASE OK_SAVE.
        WHEN 'ALLM'.
          LOOP AT ITAB.
    *       IF itab-mark = 'X'.
    *         MESSAGE i888 WITH 'Zeile' sy-tabix 'markiert'.
    *       ENDIF.
            ITAB-MARK = 'X'.
            MODIFY ITAB.
          ENDLOOP.
    Hope this will help ...
    Regards,
    Ferry Lianto

  • Photostream not working - two iphones, one itunes account, two icloud accounts

    Hello,
    My wife and I both have iphones (both 4s). I have had mine for some time and she got hers last week.
    We have one itunes account. We have two icloud accounts.
    We cannot get shared photostreams to - my phone will not receive invites from hers. It works the other way round though.
    All the settings are correct and switched on.
    Please don't send me to the FAQ page as I have tried everything on there to no avail
    Thanks
    Matt

    The quickest and easiest thing to do is take the desired iPhone and connect it to the desired iTunes account. This most likely will erase and data on the iPhone and replace it with the data from the itunes account it is connected to.

  • Fn key not working at all (in 10.4.11 and XP)

    Hello my fn key doesn't work at all, there is no difference whether I press it or not and with that none of my function keys e.g. for brightness or volume control work at all either.
    I am on the latest software updates. Have VMWare installed for XP, but even there the fn button appears as it would not exist.
    Also what's strange is that in OSX preferences in the Mouse and Keyboard section, there is no tab for my trackpad, even though it works fine. As there is no tab I can't e.g. set the feature for right clicking with the two fingers on the trackpad...
    Is this a hardware issue or some strange software issue?
    Thanks!

    Should the multitouch etc. generally work with 10.4.11 or do I need 10.5.x for the Trackpad tab to show up in the preferences - Mouse & Keyboard section?
    Thanks!

  • Working Two Formats, one Timeline: DVPro 50 and DV HD

    I am working with two formats and trying to make this process as smooth as possible, and it almost is in FCP 6.0. We haven't had too many issues, but there are issues non-the-less. So here is the background:
    We have been doing a cooking show for 3 years now, the past two have been shot with DVPro 50, this year was shot with the Panasonic HPX 2000 (Cam A) and Panasonic HVX -200 (Cam B) using 720p 24pn. Both were shot in 16x9.
    So, when we set up the master timelines, we've been using the DVCPRO HD-720p 24 Easy Setup as our default setup, so everything goes smoothly for the most part, except sometimes the footage which is shot with the DVCPRO 50 footage becomes choppy and uncooperative. The reason being (I Think??) is because this footage is shot in 29.97, then pulled down to 23.97, if that's right, then that might be the problem.
    My questions are:
    1) What, if anything can I do to smooth this workflow, so I don't come across these problems so frequently?
    2) Should I try to recapture the DVCPRO 50 footage in another setting?
    I think that's it, all help is greatly appreciated, and thanks.

    See that's the thing, I thought that FCP 6 would handle a lot of the mixed footage converting, and it has, some of the times. When I place the footage into the FCP 6 timeline it usually brings everything up to where it should be in the timeline, and that's where I thought I could handle the frame rate conversion.
    Even though, we originally shot the DVCPRO 50 footage at 23.97 it still has to go through the frame rate pulldown to get from 29.97, and FCP usually handles that pulldown. But why is it only handling it some of the times?

  • Three keys of my keyboard are not working, the cap one, the return key and the space bar, while the virtual keyboard shows to others keys highlighted in orange (^ and `); How to fix it? I writing now with a bluetooth keyboard.

    Three keys of my keyboard are not working, the cap one, the return key and the space bar, while the virtual keyboard shows to others keys highlighted in orange (^ and `); How to fix it? I writing now with a bluetooth keyboard.

    All new keyboards need Snow Leopard 10.6.8 and above for full functionality.
    Rather short-sighted of Apple perhaps, but that seems to be a trend these days.
    I'm afraid the only fix is to upgrade to SL. Personaly, I'd take it back and get a refund and seek an older keyboard or a third-party one elsewhere.

  • Satellite P300 - One Key not working on keyboard

    Hi all,
    Does anyone have a suggested solution to fix a key not working on my laptop? One letter on my keyboard "the letter b" has stopped working.
    Laptop is Satellite P300- "PSPCA-01U013"
    Thanks :)

    Hi Ricco1,
    The problem is that single keys cant be replaced so if a certain key doesnt work its time to replace the whole keyboard but dont worry, new keyboards are not so expensive. Just get in contact with an authorized service provider and ask for a new keyboard, the guys are able to order a new one and they can replace it for you if cant do this yourself.
    Here you can find a list of all ASPs:
    www.mytoshiba.com.au > Support > Find a service center

  • Wired keyboard-number pad&right arrow keys not working-serial # help!

    Hello to whomever reads/replies -
    I have a wired keyboard for my iMac(it's not the aluminum imac, but the version before it with the keyboard and mouse that came with it). I got this keyboard June 2007 after the original keyboard sent to me had problems with it with some keys not working properly. And now about a week ago my right arrow key and the zero, decimal point, one, two, three and enter button on the keypad stopped working out of the blue. One night they worked and the next they didn't with nothing being done different, nor was the keyboard stored differently.
    I've cleaned the keyboard inside and out twice and tried pushing the little squishy thing under the keys when you pop them off and there's no response with those being pushed either so something's got to be wrong with the keyboard itself.
    Also, when I go online to look up the warrenty on this keyboard, #1 i can't find where it tells me where the serial number on the **** WIRED keyboard is, just gives me where i can find it on the WIRELESS keyboards. Ugh. So I looked under my keyboard and punched in the numbers and letters that i found on a little silver plate just below where the wire and USB ports are in the top of the keyboard and I get an 'invalid serial number' error message.
    So.. could anyone help me with these problems? I'd really rather not call tech support since it took me over two hours to explain to the man that I spoke with last year about my other keyboard and I just don't have the time! Thanks in advance!
    Sharon

    Hello sharon:
    Welcome to Apple discussions.
    Run, don't walk to the phone. Call Applecare and indicate you have a warranty problem. The KB is (or will be shortly) out of warranty. It may take you some time, but it may save you some money in the long run.
    Incidentally, it appears to me that your KB is, indeed, broken.
    Barry

  • Special Functions keys not working on Satellite C50 - Windows 8.1

    Hello,
    Please could someone help me out.
    I have a Toshiba Satellite C50-A0393 that I got a few months ago with Windows 8.1 already installed (64 bit). Today I got a message saying I needed to look at the PC Health, a Toshiba blue message concerning the access agreement, and I noticed that there were three upgrades that needed to be done, the only one I can remember being the Toshiba Video Player. I think that another one had to do with the charger light?
    I don't know.
    But once I restarted my laptop after the updates I noticed that the special function keys were not working (i.e. the volume, mute, pause and play, etc.). i then went onto the Toshiba Desktop Assist and into system settings and selected the keyboard tab. I then made sure the setting for special function mode was selected.
    Now, when that setting is in place, certain keys work but for F3, F5, F6, etc and when I want to use the special functions only the volume up and down work when pressing 'Fn', but special function mode is still selected? Only those two work, not the mute or flightmode or bluetooth, which was working normally before the upgrades.
    I have googled but cannot find anything specific to 8.1, or not relating to upgrading to 8.1. I cannot find the flashcard utility and do not want to try something where I do not know what I am doing. How can I get these special function keys working again normally? Sorry for the long message but I wanted to give as much info as possible.
    Many thanks,
    Melanie

    Hi
    It sounds strange to me that a Toshiba update (Toshiba Video Player, etc) would affect the function key functionality.
    Nevertheless the function key (F1-F10) can be used in combination with or without the FN button. This depends on the special function key mode.
    In case you want to use the F1-F12 functions without the pressing FN button, the function key mode should be enabled (should be set to special function mode)
    Here the full details how it works:
    https://aps2.toshiba-tro.de/kb0/HTD2503B90001R01.htm
    Now it these buttons would not work even if the FN button has been pressed, then there is some problem with the software.
    First of all I would recommend you to set the BIOS to default because this function key mode can be changed in BIOS too.
    After that, check if the key would work. If not, reinstall the
    Toshiba Function Key Utility
    And Toshiba System Driver
    You can also check if the essential service has not been disabled.
    Start the Task Manager and go to start up items. There you should enable all Toshiba apps and services and then restart.

  • Why F keys not working on wireless Apple keyboard on Mavericks 10.9.1 properly?

    Checked the topics about this issue but still haven't found a solution.
    The "Use all F1, F2, etc. keys as standard function keys." is unchecked. Tried everything, also to reconnect the device via bluetooth, turned it off etc. but still not working.
    One of my Shift keys not working as well (the right one). Ony the volume keys that are working since i have upgraded to Mavericks.
    I have the aluminium wireless keyboard with two batteries without numpad (small keyboard).
    It is connected to a 27" iMac late 2009.
    Thanks for every reply.

    Hi joggersalesman,
    Welcome to the Support Communities!
    Here are a couple of troubleshooting articles for your keyboard issue:
    One or more keys on the keyboard do not respond
    http://support.apple.com/kb/ts1381
    Troubleshooting wireless mouse and keyboard issues
    http://support.apple.com/kb/ts3048
    I hope this information helps ....
    Have a great day!
    - Judy

  • Bootcamp "no bootable device" Option key not working

    Ok recently rebuilt 2 older "Intel Core Duo" Mac Mini's with SSD drives. They work great and have been flying, however on one of them I wanted to setup BootCamp so that I could run Win7 Pro on it as well.
    So here is what I did...
    - When I first built the Mini's I used a bootable Firewire drive with Snow Leopard installed
    - I had the drive divided into 2 partitions at first
    - when I tried to install BootCamp error message kept telling me it needed only one part, so I finally made Primary OSX part one big part, then I was able to get BootCamp going
    - I choose "I have Mac OSX Install disc" because "Download the Windows support software" would not work
    - Next it created the BOOTCAMP part and told me to put Win OS disk in drive
    - I put in an OEM Win 7 CD I borrowed from work, so I could see how it worked.
    - When it rebooted, it Did not recognize CD and all screen said was choose Option 1 or 2, (neither option had any text, and the keyboard would not take any input)
    - Tried numerous times to get back to OSX, used every boot option I could find online but none would work.. Also Mini would not give back CD for nothing
    - Next I opened up Mini to get to CD, I had a friend that was able to get one out by opening up the actual dvd drive but I was trying to avoid that. So what I ended up doing was using a putty knife to keep CD from spinning on bootup. After about 10 to 15 seconds of the CD not spinning, it finally kicked it out for me. (YAY!!)
    - New problem, now I have the "No Bootable Device - - Insert Boot Disk And Press Any Key"
    - I have tried the following. Removing the drive and plugging in a Sata to USB cable so I can access it from other Mini
    - I thought that if I deleted the BOOTCAMP part it would allow me to boot back to OSX, I tried renaming Part to what it was before, I have tried putting in a Formatted drive with no OS on it, I have tried installing the contents of a Win 7 OEM CD onto Formatted drive as a single FAT part.
    Nothing Works, I am either stuck at the "No Bootable Device" screen, or if I turn on Firewire drive with Snow Leopard I get a blinking cursor that never shows any text.
    At this point, I don't want BootCamp on that Mini anymore, I just want my working OSX, but I cant get anything to work and I'm afraid to stick a CD in the Mini for fear it wont give it back to me and I end up damaging it getting it out. I even created a CD with rEFIt on it, but after I formatted a totally different drive and the Mini is still expecting to finish what it start with BootCamp, it leads me to believe that there is some BIOS or data stored somewhere that is not on the harddrive. If so, could I pull the RAM, or push some sort of master Reset button some where?
    I'm also thinking that I need a non mac USB keyboard, perhaps maybe there or know Aluminum Keyboard drives in the memory where the Mini is trying to finish the BootCamp install.
    As a side note, I sure wish Apple would have designed the Mini to fail Safe not fail broken.
    Please Help.
    Randy

    The Formatted test drive did not have Any OS on it. I just thought that since that was how I installed it originally, that it would work.
    I put in SSD straight out of package, connected Firewire drive with SnowLeopard install, and it booted to it and asked me for to install to which drive, I choose SSD and it took off..
    So what your saying is, do the same thing but hang SSD from broken Mini onto working Mini and boot up with same Firewire drive, and have it install OS back onto Broken SSD drive.
    Assuming all of this works correctly, why would plugging it back into broken Mini work? Wont the Broken Mini still be looking for BootCamp to finish what it started? (just seems that way from what I've experienced so far)

  • I have a MacBook Pro 15" and my warranty just ran out! I partitioned my harddrive into two partitions, one with Snow Leopard and the other with microsoft.This morning I turned on my Macbook Pro and it will not boot into Snow Leopard.

    Good Morning,
    I have a MacBook Pro 15" and my warranty just ran out! I partitioned my harddrive into two partitions, one with Snow Leopard and the other with microsoft.This morning I turned on my Macbook Pro and it will not boot into Snow Leopard. I shut it off took out the battery, reinstalled the battery. Then I put in the Snow Leopard CD and booted up to disk utility and The Snow Leopard partion would not show up?? I do see the microsoft partion.
    I also rebooted holding down the shift key and still no Snow Leopard
    Could you please tell me what I can do, what keys do I press on restart any advice to get Snow leopard back.
    thank you.

    Have you restarted holding down the Opt key?  That procedure should give you a gray screen with all of the partitions that exist.  Then select the SL partition for boot.  Also go to System Preferences and Startup Disk, unlock the lock and select the SL partition as the default boot partition, then relock.

  • MacBook Keys not working even after KeyBoard Firmware update

    My friend's sister bought me a MacBook from the US last October. Fortunately, Apple announced the release of Leopard also on the same month and I got a free upgrade to leopard. I installed leopard about 3 months back. My keyboard was working fine when I had Tiger installed. After I installed Leopard, I remember installing a Keyboard firmware update once through the Software Update.
    About two three weeks back, my MacBook started acting wierd. Some keys were not working (mostly 't', 'q', left shift, left command, zero which is not working even now. I couldn't close the last bracket because the key is not working. I am a php programmer and I can't think of living without the closing bracket and zero keys . But most of the keys works on and off.
    After seeing on several sites that it is a problem with firmware, I once again downloaded the firware update, but couldn't install it since the installation wizard says that my system doesn't need it.
    Can someone plz tell me what to do now? Will reinstalling help?
    Thanks in advance.

    The problem persists everytime I restart my system or wake it up from sleep. But each time different keys have problem. I am now downloading update 10.5.4. Can someone plz help me?

  • ITunes Media Function Keys Not Working

    So I picked up a new MacBook Pro Retina 13" a week or so ago, and it's going great so far, except for one thing. It seems that the Media function keys aren't working in iTunes?
    I checked under the keyboard preferences to ensure the "standard function" keys box wasn't checked, and it wasn't. All the other functions keys are working properly except the back, play/pause, and skip keys. I tested the keys with other functions, such as setting a shortcut to the F8 key, and it recognized the input, so its not a hardware issue.
    I tried to find help elsewhere, but most people seemingly just had that box in the settings checked, which wasn't the problem for me it seems.
    Any suggestions?

    lions99 wrote:
    Hey guys,
    I see that most of you are having a issue with the function keys.
    Try this- http://goo.gl/gdlS3?
    This is a hotfix for this issue. Now keep in mind this only supports
    Windows 7 Enterprise
    Windows 7 Home Basic
    Windows 7 Home Premium
    Windows 7 Professional
    Windows 7 Starter
    Windows 7 Ultimate
    So if you don't have this, then don't run this fix.
    Also, If you guys can give me your product # and complete model name of the notebook you have, so I can send you a link to update your BIOS.
    Here is a link to show you how to find your product #- http://goo.gl/vYKya
    THX
    Thank you for your help, but another person had already answered me. =]
    After I re-installed the keyboard drivers, the "fn + " keys became functional again. The driver i installed was "HP Quick Launch Buttons" or just "sp49456" if you want to know.
    Thank you for your help, I am very pleased with it.

Maybe you are looking for

  • SAP TM - Change in Search help in UI structure does not reflect in FPM screen

    Hi Experts, We have a FBI view in which we have added a search help to a UOM field by adding the standard search help /SCMTMS/SH_QUANTITY in the UI structure. The standard search help is showing in the UI. Now we want to add a filter in the search he

  • Grain much worse on DVD than in FC timeline

    Hi everybody. I'm working with some clips that are too dark. I brightened them in Final Cut using three-way color corrector, exported the timeline as usual and burned the film onto DVD. The grain is about twice as bad on the DVD as it is in Final Cut

  • How do i get scan-to-email to work?

    Tech Data: OS:  Mac Snow Leopard Printer: 8600 Pro Plus Connection Method: Printer- Ethernet (Bonjour), Laptop-Wireless Running FULL HP software package, including full updates via Apple Software Update Set-up went without a hitch Printing is working

  • Event is on 'Hold' in iPhoto source list under 'Recent'?

    In the source list in iPhoto, under 'Recent', I have one of my Events and it has the text 'Hold' next to it for some reason. Why is that? When I mouseover it, it says "Keep this Event in the Source List". Why is it there, and how do I remove it from

  • Unable to restore laptop to factory settings

    I'm very sorry if this is a total repeat post, but everything I have read prior has been unhelpful for my situation. I have a Toshiba Satellite A215-S6816, and recently many of my drivers have become corrupt and the computer has been working poorly i