mirror of
https://github.com/issus/altium-library.git
synced 2025-04-04 12:06:57 +00:00
5163 lines
373 KiB
Transact-SQL
5163 lines
373 KiB
Transact-SQL
USE [altium_library]
|
||
GO
|
||
/****** Object: Table [dbo].[Components] Script Date: 2016-01-08 10:34:01 PM ******/
|
||
SET ANSI_NULLS ON
|
||
GO
|
||
SET QUOTED_IDENTIFIER ON
|
||
GO
|
||
IF NOT EXISTS (SELECT * FROM sys.objects WHERE object_id = OBJECT_ID(N'[dbo].[Components]') AND type in (N'U'))
|
||
BEGIN
|
||
CREATE TABLE [dbo].[Components](
|
||
[PartId] [int] IDENTITY(1,1) NOT NULL,
|
||
[ComponentType] [nvarchar](50) NULL,
|
||
[ComponentSubType] [nvarchar](50) NULL,
|
||
[Value] [nvarchar](50) NULL,
|
||
[Comment] [nvarchar](50) NULL,
|
||
[MfrPartNo] [nvarchar](50) NOT NULL,
|
||
[Manufacturer] [nvarchar](50) NOT NULL,
|
||
[Description] [nvarchar](50) NOT NULL,
|
||
[Supplier1] [nvarchar](50) NULL,
|
||
[Supplier1PartNo] [nvarchar](50) NULL,
|
||
[FootprintRef] [nvarchar](150) NOT NULL,
|
||
[FootprintPath] [nvarchar](150) NOT NULL,
|
||
[SymbolRef] [nvarchar](150) NOT NULL,
|
||
[SymbolPath] [nvarchar](150) NOT NULL,
|
||
[ComponentLink1Description] [nvarchar](50) NULL,
|
||
[ComponentLink1URL] [nvarchar](200) NULL,
|
||
[ComponentLink2Description] [nvarchar](50) NULL,
|
||
[ComponentLink2URL] [nvarchar](200) NULL,
|
||
[ComponentLink3Description] [nvarchar](50) NULL,
|
||
[ComponentLink3URL] [nvarchar](200) NULL,
|
||
[TemperatureRange] [nvarchar](50) NULL,
|
||
[TemperatureCoefficient] [nvarchar](50) NULL,
|
||
[Dielectric] [nvarchar](50) NULL,
|
||
[Tolerance] [nvarchar](50) NULL,
|
||
[PowerRating] [nvarchar](50) NULL,
|
||
[CurrentRating] [nvarchar](50) NULL,
|
||
[Voltage] [nvarchar](50) NULL,
|
||
[Frequency] [nvarchar](50) NULL,
|
||
[InsertionLoss] [nvarchar](50) NULL,
|
||
[Supplier2] [nvarchar](50) NULL,
|
||
[Supplier2PartNo] [nvarchar](50) NULL,
|
||
[FootprintRef2] [nvarchar](150) NULL,
|
||
[FootprintPath2] [nvarchar](150) NULL,
|
||
[FootprintRef3] [nvarchar](150) NULL,
|
||
[FootprintPath3] [nvarchar](150) NULL,
|
||
[Price] [money] NULL,
|
||
[Type] [nvarchar](50) NULL,
|
||
[DevicePackage] [nvarchar](50) NULL,
|
||
[QatFrequency] [nvarchar](50) NULL,
|
||
[DCResistance] [nvarchar](50) NULL,
|
||
[Shielding] [nvarchar](50) NULL,
|
||
[ImpedanceAtFrequency] [nvarchar](50) NULL,
|
||
[Colour] [nvarchar](50) NULL,
|
||
[Millicandela] [nvarchar](50) NULL,
|
||
[LensTransparency] [nvarchar](50) NULL,
|
||
[VoltageForward] [nvarchar](50) NULL,
|
||
[CurrentTest] [nvarchar](50) NULL,
|
||
[ViewingAngle] [nvarchar](50) NULL,
|
||
[CurrentRectified] [nvarchar](50) NULL,
|
||
[VoltageDcReverse] [nvarchar](50) NULL,
|
||
[ReverseRecoveryTime] [nvarchar](50) NULL,
|
||
[CurrentReverseLeakage] [nvarchar](50) NULL,
|
||
[NumberOfTurns] [nvarchar](50) NULL,
|
||
[AdjustmentType] [nvarchar](50) NULL,
|
||
[RippleCurrent] [nvarchar](50) NULL,
|
||
[Impedance] [nvarchar](50) NULL,
|
||
[LifetimeAtTemp] [nvarchar](50) NULL,
|
||
[VoltageReverseStandoff] [nvarchar](50) NULL,
|
||
[VoltageBreakdown] [nvarchar](50) NULL,
|
||
[VoltageClamping] [nvarchar](50) NULL,
|
||
[CurrentPulsePeak] [nvarchar](50) NULL,
|
||
[PowerPeakPulse] [nvarchar](50) NULL,
|
||
[CapacitanceAtFrequency] [nvarchar](50) NULL,
|
||
[NumberOfPositions] [nvarchar](50) NULL,
|
||
[PositionsPerLevel] [nvarchar](50) NULL,
|
||
[NumberOfLevels] [nvarchar](50) NULL,
|
||
[Pitch] [nvarchar](50) NULL,
|
||
[Orientation] [nvarchar](50) NULL,
|
||
[Series] [nvarchar](50) NULL,
|
||
[FasteningType] [nvarchar](50) NULL,
|
||
[ContactFinish] [nvarchar](50) NULL,
|
||
[Attenuation] [nvarchar](50) NULL,
|
||
[NumberOfBits] [nvarchar](50) NULL,
|
||
[DataInterface] [nvarchar](50) NULL,
|
||
[NumberOfConverters] [nvarchar](50) NULL,
|
||
[NumberOfOutputs] [nvarchar](50) NULL,
|
||
[CurrentSupply] [nvarchar](50) NULL,
|
||
[CurrentOutput] [nvarchar](50) NULL,
|
||
[FrequencyLower] [nvarchar](50) NULL,
|
||
[FrequencyUpper] [nvarchar](50) NULL,
|
||
[IsolationAtFrequency] [nvarchar](50) NULL,
|
||
[InsertionLossAtFrequency] [nvarchar](50) NULL,
|
||
[Circuit] [nvarchar](50) NULL,
|
||
[P1dB] [nvarchar](50) NULL,
|
||
[Topology] [nvarchar](50) NULL,
|
||
[IIP3] [nvarchar](50) NULL,
|
||
[InputRange] [nvarchar](50) NULL,
|
||
[Accuracy] [nvarchar](50) NULL,
|
||
[DisplayType] [nvarchar](50) NULL,
|
||
[DisplayMode] [nvarchar](50) NULL,
|
||
[Touchscreen] [nvarchar](50) NULL,
|
||
[ViewingArea] [nvarchar](50) NULL,
|
||
[Backlight] [nvarchar](50) NULL,
|
||
[DiagonalScreenSize] [nvarchar](50) NULL,
|
||
[DotPixels] [nvarchar](50) NULL,
|
||
[GraphicsColour] [nvarchar](50) NULL,
|
||
[BackgroundColour] [nvarchar](50) NULL,
|
||
[DotSize] [nvarchar](50) NULL,
|
||
[DotPitch] [nvarchar](50) NULL,
|
||
[SwitchFunction] [nvarchar](50) NULL,
|
||
[ContactRatingAtVoltage] [nvarchar](50) NULL,
|
||
[ActuatorType] [nvarchar](50) NULL,
|
||
[ActuatorHeight] [nvarchar](50) NULL,
|
||
[ActuatorOrientation] [nvarchar](50) NULL,
|
||
[Illumination] [nvarchar](50) NULL,
|
||
[IlluminationVoltage] [nvarchar](50) NULL,
|
||
[IlluminationTypeColour] [nvarchar](50) NULL,
|
||
[OperatingForce] [nvarchar](50) NULL,
|
||
[SwitchTravel] [nvarchar](50) NULL,
|
||
[MechanicalLife] [nvarchar](50) NULL,
|
||
[Speed] [nvarchar](50) NULL,
|
||
[MemoryType] [nvarchar](50) NULL,
|
||
[MemoryFormat] [nvarchar](50) NULL,
|
||
[MemorySize] [nvarchar](50) NULL,
|
||
[VoltageOutput] [nvarchar](50) NULL,
|
||
[VoltageDropout] [nvarchar](50) NULL,
|
||
[VoltageInput] [nvarchar](50) NULL,
|
||
[Features] [nvarchar](50) NULL,
|
||
[DrainToSourceVoltage] [nvarchar](50) NULL,
|
||
[RdsOnMax] [nvarchar](50) NULL,
|
||
[VgsthMax] [nvarchar](50) NULL,
|
||
[GateCharge] [nvarchar](50) NULL,
|
||
[InputCapacitance] [nvarchar](50) NULL,
|
||
[PowerMax] [nvarchar](50) NULL,
|
||
[ThreadedUnthreaded] [nvarchar](50) NULL,
|
||
[Gender] [nvarchar](50) NULL,
|
||
[ThreadSize] [nvarchar](50) NULL,
|
||
[DiameterInside] [nvarchar](50) NULL,
|
||
[DiameterOutside] [nvarchar](50) NULL,
|
||
[BetweenBoardHeight] [nvarchar](50) NULL,
|
||
[LengthOverall] [nvarchar](50) NULL,
|
||
[Material] [nvarchar](50) NULL,
|
||
[Plating] [nvarchar](50) NULL,
|
||
[Shape] [nvarchar](50) NULL,
|
||
[NumberOfPorts] [nvarchar](50) NULL,
|
||
[Termination] [nvarchar](50) NULL,
|
||
[TabDirection] [nvarchar](50) NULL,
|
||
[SizeDimension] [nvarchar](50) NULL,
|
||
[Thickness] [nvarchar](50) NULL,
|
||
[Hardness] [nvarchar](50) NULL,
|
||
[MountingType] [nvarchar](50) NULL,
|
||
[LoadCapacitance] [nvarchar](50) NULL,
|
||
[ESR] [nvarchar](50) NULL,
|
||
[OperatingMode] [nvarchar](50) NULL,
|
||
[Capacitance] [nvarchar](50) NULL,
|
||
[FrequencyStability] [nvarchar](50) NULL,
|
||
[Output] [nvarchar](50) NULL,
|
||
[InputType] [nvarchar](50) NULL,
|
||
[SamplingRate] [nvarchar](50) NULL,
|
||
[NumberOfInputs] [nvarchar](50) NULL,
|
||
[Configuration] [nvarchar](50) NULL,
|
||
[RatioSHADC] [nvarchar](50) NULL,
|
||
[NumberADConverters] [nvarchar](50) NULL,
|
||
[Architecture] [nvarchar](50) NULL,
|
||
[ReferenceType] [nvarchar](50) NULL,
|
||
[SupplyVoltageAnalogue] [nvarchar](50) NULL,
|
||
[OutputType] [nvarchar](50) NULL,
|
||
[Function] [nvarchar](50) NULL,
|
||
[CoreProcessor] [nvarchar](50) NULL,
|
||
[CoreSize] [nvarchar](50) NULL,
|
||
[Connectivity] [nvarchar](200) NULL,
|
||
[Peripherals] [nvarchar](200) NULL,
|
||
[NumberOfIO] [nvarchar](50) NULL,
|
||
[ProgramMemorySize] [nvarchar](50) NULL,
|
||
[ProgramMemoryType] [nvarchar](50) NULL,
|
||
[EepromSize] [nvarchar](50) NULL,
|
||
[RamSize] [nvarchar](50) NULL,
|
||
[DataConverters] [nvarchar](50) NULL,
|
||
[OscillatorType] [nvarchar](50) NULL
|
||
) ON [PRIMARY]
|
||
END
|
||
GO
|
||
/****** Object: Table [dbo].[DefaultMappings] Script Date: 2016-01-08 10:34:01 PM ******/
|
||
SET ANSI_NULLS ON
|
||
GO
|
||
SET QUOTED_IDENTIFIER ON
|
||
GO
|
||
IF NOT EXISTS (SELECT * FROM sys.objects WHERE object_id = OBJECT_ID(N'[dbo].[DefaultMappings]') AND type in (N'U'))
|
||
BEGIN
|
||
CREATE TABLE [dbo].[DefaultMappings](
|
||
[MappingId] [int] IDENTITY(1,1) NOT NULL,
|
||
[SupplierField] [nvarchar](50) NOT NULL,
|
||
[InsertParameter] [nvarchar](50) NOT NULL
|
||
) ON [PRIMARY]
|
||
END
|
||
GO
|
||
/****** Object: View [dbo].[ADC - Programmable] Script Date: 2016-01-08 10:34:01 PM ******/
|
||
SET ANSI_NULLS ON
|
||
GO
|
||
SET QUOTED_IDENTIFIER ON
|
||
GO
|
||
IF NOT EXISTS (SELECT * FROM sys.views WHERE object_id = OBJECT_ID(N'[dbo].[ADC - Programmable]'))
|
||
EXEC dbo.sp_executesql @statement = N'CREATE VIEW [dbo].[ADC - Programmable]
|
||
AS
|
||
SELECT TOP (100) PERCENT PartId, Value, Comment, MfrPartNo AS [Part Number], Manufacturer, Description, Supplier1 AS [Supplier 1], Supplier1PartNo AS [Supplier Part Number 1], FootprintRef AS [Footprint Ref],
|
||
FootprintPath AS [Footprint Path], SymbolRef AS [Library Ref], SymbolPath AS [Library Path], ComponentLink1Description, ComponentLink1URL, ComponentLink2Description, ComponentLink2URL,
|
||
ComponentLink3Description, ComponentLink3URL, Supplier2 AS [Supplier 2], Supplier2PartNo AS [Supplier Part Number 2], FootprintRef2 AS [Footprint Ref 2], FootprintPath2 AS [Footprint Path 2],
|
||
FootprintRef3 AS [Footprint Ref 3], FootprintPath3 AS [Footprint Path 3], Price, Type, DevicePackage AS [Device Package], Series, NumberOfBits AS [Number of Bits], SamplingRate AS [Samping Rate],
|
||
NumberOfInputs AS [Number of Inputs], InputType AS [Input Type], DataInterface AS [Data Interface], Configuration, RatioSHADC AS [Ratio - S/H:ADC], NumberADConverters AS [Number of A/D Converters],
|
||
Architecture, ReferenceType AS [Reference Type], Voltage AS [Voltage - Supply, Analog], VoltageInput AS [Voltage - Supply, Digital], Features
|
||
FROM dbo.Components
|
||
WHERE (ComponentType = ''ADC'') AND (ComponentSubType = ''PROG'')
|
||
'
|
||
GO
|
||
/****** Object: View [dbo].[Button - Tactile] Script Date: 2016-01-08 10:34:01 PM ******/
|
||
SET ANSI_NULLS ON
|
||
GO
|
||
SET QUOTED_IDENTIFIER ON
|
||
GO
|
||
IF NOT EXISTS (SELECT * FROM sys.views WHERE object_id = OBJECT_ID(N'[dbo].[Button - Tactile]'))
|
||
EXEC dbo.sp_executesql @statement = N'CREATE VIEW [dbo].[Button - Tactile]
|
||
AS
|
||
SELECT TOP (100) PERCENT PartId, Value, Comment, MfrPartNo AS [Part Number], Manufacturer, Description, Supplier1 AS [Supplier 1], Supplier1PartNo AS [Supplier Part Number 1], FootprintRef AS [Footprint Ref],
|
||
FootprintPath AS [Footprint Path], SymbolRef AS [Library Ref], SymbolPath AS [Library Path], ComponentLink1Description, ComponentLink1URL, ComponentLink2Description, ComponentLink2URL,
|
||
ComponentLink3Description, ComponentLink3URL, Supplier2 AS [Supplier 2], Supplier2PartNo AS [Supplier Part Number 2], FootprintRef2 AS [Footprint Ref 2], FootprintPath2 AS [Footprint Path 2],
|
||
FootprintRef3 AS [Footprint Ref 3], FootprintPath3 AS [Footprint Path 3], Price, Type, DevicePackage AS [Device Package], Series, Circuit, SwitchFunction AS [Switch Function],
|
||
ContactRatingAtVoltage AS [Contact Rating @ Voltage], ActuatorType AS [Actuator Type], ActuatorOrientation AS [Actuator Orientation], Illumination, IlluminationVoltage AS [Illumination Voltage],
|
||
IlluminationTypeColour AS [Illumination Type, Colour], OperatingForce AS [Operating Force], SwitchTravel AS [Switch Travel], MechanicalLife AS [Mechanical Life],
|
||
TemperatureRange AS [Operating Temperature]
|
||
FROM dbo.Components
|
||
WHERE (ComponentType = ''BUTTON'') AND (ComponentSubType = ''TACT'')
|
||
'
|
||
GO
|
||
/****** Object: View [dbo].[Capacitor Aluminium] Script Date: 2016-01-08 10:34:01 PM ******/
|
||
SET ANSI_NULLS ON
|
||
GO
|
||
SET QUOTED_IDENTIFIER ON
|
||
GO
|
||
IF NOT EXISTS (SELECT * FROM sys.views WHERE object_id = OBJECT_ID(N'[dbo].[Capacitor Aluminium]'))
|
||
EXEC dbo.sp_executesql @statement = N'CREATE VIEW [dbo].[Capacitor Aluminium]
|
||
AS
|
||
SELECT PartId, Value, Comment, MfrPartNo AS [Part Number], Manufacturer, Description, Supplier1 AS [Supplier 1], Supplier1PartNo AS [Supplier Part Number 1], FootprintRef AS [Footprint Ref],
|
||
FootprintPath AS [Footprint Path], SymbolRef AS [Library Ref], SymbolPath AS [Library Path], ComponentLink1Description, ComponentLink1URL, ComponentLink2Description, ComponentLink2URL,
|
||
ComponentLink3Description, ComponentLink3URL, TemperatureRange, Tolerance, Voltage, Supplier2 AS [Supplier 2], Supplier2PartNo AS [Supplier Part Number 2], FootprintRef2 AS [Footprint Ref 2],
|
||
FootprintPath2 AS [Footprint Path 2], FootprintRef3 AS [Footprint Ref 3], FootprintPath3 AS [Footprint Path 3], Price, Type, DevicePackage AS [Device Package], RippleCurrent AS [Ripple Current], Impedance,
|
||
LifetimeAtTemp AS [Lifetime @ Temp]
|
||
FROM dbo.Components
|
||
WHERE (ComponentType = ''CAP'') AND (ComponentSubType = ''ALUM'')
|
||
'
|
||
GO
|
||
/****** Object: View [dbo].[Capacitor Aluminium Polymer] Script Date: 2016-01-08 10:34:01 PM ******/
|
||
SET ANSI_NULLS ON
|
||
GO
|
||
SET QUOTED_IDENTIFIER ON
|
||
GO
|
||
IF NOT EXISTS (SELECT * FROM sys.views WHERE object_id = OBJECT_ID(N'[dbo].[Capacitor Aluminium Polymer]'))
|
||
EXEC dbo.sp_executesql @statement = N'CREATE VIEW [dbo].[Capacitor Aluminium Polymer]
|
||
AS
|
||
SELECT PartId, Value, Comment, MfrPartNo AS [Part Number], Manufacturer, Description, Supplier1 AS [Supplier 1], Supplier1PartNo AS [Supplier Part Number 1], FootprintRef AS [Footprint Ref],
|
||
FootprintPath AS [Footprint Path], SymbolRef AS [Library Ref], SymbolPath AS [Library Path], ComponentLink1Description, ComponentLink1URL, ComponentLink2Description, ComponentLink2URL,
|
||
ComponentLink3Description, ComponentLink3URL, TemperatureRange, Tolerance, Voltage, Supplier2 AS [Supplier 2], Supplier2PartNo AS [Supplier Part Number 2], FootprintRef2 AS [Footprint Ref 2],
|
||
FootprintPath2 AS [Footprint Path 2], FootprintRef3 AS [Footprint Ref 3], FootprintPath3 AS [Footprint Path 3], Price, Type, DevicePackage AS [Device Package], RippleCurrent AS [Ripple Current], Impedance,
|
||
LifetimeAtTemp AS [Lifetime @ Temp]
|
||
FROM dbo.Components
|
||
WHERE (ComponentType = ''CAP'') AND (ComponentSubType = ''ALUMP'')
|
||
'
|
||
GO
|
||
/****** Object: View [dbo].[Capacitor Ceramic] Script Date: 2016-01-08 10:34:01 PM ******/
|
||
SET ANSI_NULLS ON
|
||
GO
|
||
SET QUOTED_IDENTIFIER ON
|
||
GO
|
||
IF NOT EXISTS (SELECT * FROM sys.views WHERE object_id = OBJECT_ID(N'[dbo].[Capacitor Ceramic]'))
|
||
EXEC dbo.sp_executesql @statement = N'CREATE VIEW [dbo].[Capacitor Ceramic]
|
||
AS
|
||
SELECT PartId, Value, Comment, MfrPartNo AS [Part Number], Manufacturer, Description, Supplier1 AS [Supplier 1], Supplier1PartNo AS [Supplier Part Number 1], FootprintRef AS [Footprint Ref],
|
||
FootprintPath AS [Footprint Path], SymbolRef AS [Library Ref], SymbolPath AS [Library Path], ComponentLink1Description, ComponentLink1URL, ComponentLink2Description, ComponentLink2URL,
|
||
ComponentLink3Description, ComponentLink3URL, TemperatureRange, TemperatureCoefficient, Dielectric, Tolerance, Voltage, Supplier2 AS [Supplier 2], Supplier2PartNo AS [Supplier Part Number 2],
|
||
FootprintRef2 AS [Footprint Ref 2], FootprintPath2 AS [Footprint Path 2], FootprintRef3 AS [Footprint Ref 3], FootprintPath3 AS [Footprint Path 3], Price, Type, DevicePackage AS [Device Package]
|
||
FROM dbo.Components
|
||
WHERE (ComponentType = ''CAP'') AND (ComponentSubType = ''CER'')
|
||
'
|
||
GO
|
||
/****** Object: View [dbo].[Capacitor RF] Script Date: 2016-01-08 10:34:01 PM ******/
|
||
SET ANSI_NULLS ON
|
||
GO
|
||
SET QUOTED_IDENTIFIER ON
|
||
GO
|
||
IF NOT EXISTS (SELECT * FROM sys.views WHERE object_id = OBJECT_ID(N'[dbo].[Capacitor RF]'))
|
||
EXEC dbo.sp_executesql @statement = N'CREATE VIEW [dbo].[Capacitor RF]
|
||
AS
|
||
SELECT PartId, Value, Comment, MfrPartNo AS [Part Number], Manufacturer, Description, Supplier1 AS [Supplier 1], Supplier1PartNo AS [Supplier Part Number 1], FootprintRef AS [Footprint Ref],
|
||
FootprintPath AS [Footprint Path], SymbolRef AS [Library Ref], SymbolPath AS [Library Path], ComponentLink1Description, ComponentLink1URL, ComponentLink2Description, ComponentLink2URL,
|
||
ComponentLink3Description, ComponentLink3URL, TemperatureRange, TemperatureCoefficient, Dielectric, Tolerance, Voltage, Supplier2 AS [Supplier 2], Supplier2PartNo AS [Supplier Part Number 2],
|
||
FootprintRef2 AS [Footprint Ref 2], FootprintPath2 AS [Footprint Path 2], FootprintRef3 AS [Footprint Ref 3], FootprintPath3 AS [Footprint Path 3], Price, Type, DevicePackage AS [Device Package]
|
||
FROM dbo.Components
|
||
WHERE (ComponentType = ''CAP'') AND (ComponentSubType = ''RF'')
|
||
'
|
||
GO
|
||
/****** Object: View [dbo].[Capacitor Tantalum] Script Date: 2016-01-08 10:34:01 PM ******/
|
||
SET ANSI_NULLS ON
|
||
GO
|
||
SET QUOTED_IDENTIFIER ON
|
||
GO
|
||
IF NOT EXISTS (SELECT * FROM sys.views WHERE object_id = OBJECT_ID(N'[dbo].[Capacitor Tantalum]'))
|
||
EXEC dbo.sp_executesql @statement = N'CREATE VIEW [dbo].[Capacitor Tantalum]
|
||
AS
|
||
SELECT PartId, Value, Comment, MfrPartNo AS [Part Number], Manufacturer, Description, Supplier1 AS [Supplier 1], Supplier1PartNo AS [Supplier Part Number 1], FootprintRef AS [Footprint Ref],
|
||
FootprintPath AS [Footprint Path], SymbolRef AS [Library Ref], SymbolPath AS [Library Path], ComponentLink1Description, ComponentLink1URL, ComponentLink2Description, ComponentLink2URL,
|
||
ComponentLink3Description, ComponentLink3URL, TemperatureRange, Tolerance, Voltage, Supplier2 AS [Supplier 2], Supplier2PartNo AS [Supplier Part Number 2], FootprintRef2 AS [Footprint Ref 2],
|
||
FootprintPath2 AS [Footprint Path 2], FootprintRef3 AS [Footprint Ref 3], FootprintPath3 AS [Footprint Path 3], Price, Type, DevicePackage AS [Device Package]
|
||
FROM dbo.Components
|
||
WHERE (ComponentType = ''CAP'') AND (ComponentSubType = ''TANT'')
|
||
'
|
||
GO
|
||
/****** Object: View [dbo].[Capacitor Tantalum Polymer] Script Date: 2016-01-08 10:34:01 PM ******/
|
||
SET ANSI_NULLS ON
|
||
GO
|
||
SET QUOTED_IDENTIFIER ON
|
||
GO
|
||
IF NOT EXISTS (SELECT * FROM sys.views WHERE object_id = OBJECT_ID(N'[dbo].[Capacitor Tantalum Polymer]'))
|
||
EXEC dbo.sp_executesql @statement = N'CREATE VIEW [dbo].[Capacitor Tantalum Polymer]
|
||
AS
|
||
SELECT PartId, Value, Comment, MfrPartNo AS [Part Number], Manufacturer, Description, Supplier1 AS [Supplier 1], Supplier1PartNo AS [Supplier Part Number 1], FootprintRef AS [Footprint Ref],
|
||
FootprintPath AS [Footprint Path], SymbolRef AS [Library Ref], SymbolPath AS [Library Path], ComponentLink1Description, ComponentLink1URL, ComponentLink2Description, ComponentLink2URL,
|
||
ComponentLink3Description, ComponentLink3URL, TemperatureRange, Tolerance, Voltage, Supplier2 AS [Supplier 2], Supplier2PartNo AS [Supplier Part Number 2], FootprintRef2 AS [Footprint Ref 2],
|
||
FootprintPath2 AS [Footprint Path 2], FootprintRef3 AS [Footprint Ref 3], FootprintPath3 AS [Footprint Path 3], Price, Type, DevicePackage AS [Device Package]
|
||
FROM dbo.Components
|
||
WHERE (ComponentType = ''CAP'') AND (ComponentSubType = ''TPOLY'')
|
||
'
|
||
GO
|
||
/****** Object: View [dbo].[Chip LED] Script Date: 2016-01-08 10:34:01 PM ******/
|
||
SET ANSI_NULLS ON
|
||
GO
|
||
SET QUOTED_IDENTIFIER ON
|
||
GO
|
||
IF NOT EXISTS (SELECT * FROM sys.views WHERE object_id = OBJECT_ID(N'[dbo].[Chip LED]'))
|
||
EXEC dbo.sp_executesql @statement = N'CREATE VIEW [dbo].[Chip LED]
|
||
AS
|
||
SELECT PartId, Comment, MfrPartNo AS [Part Number], Manufacturer, Description, Supplier1 AS [Supplier 1], Supplier1PartNo AS [Supplier Part Number 1], FootprintRef AS [Footprint Ref], FootprintPath AS [Footprint Path],
|
||
SymbolRef AS [Library Ref], SymbolPath AS [Library Path], ComponentLink1Description, ComponentLink1URL, ComponentLink2Description, ComponentLink2URL, ComponentLink3Description,
|
||
ComponentLink3URL, Supplier2 AS [Supplier 2], Supplier2PartNo AS [Supplier Part Number 2], FootprintRef2 AS [Footprint Ref 2], FootprintPath2 AS [Footprint Path 2], FootprintRef3 AS [Footprint Ref 3],
|
||
FootprintPath3 AS [Footprint Path 3], Price, Type, DevicePackage AS [Device Package], Colour, Millicandela, LensTransparency AS [Lens Transparency], VoltageForward AS [Voltage Forward],
|
||
CurrentTest AS [Current (Test)], ViewingAngle AS [Viewing Angle]
|
||
FROM dbo.Components
|
||
WHERE (ComponentType = ''LED'')
|
||
'
|
||
GO
|
||
/****** Object: View [dbo].[Connector Rectangular] Script Date: 2016-01-08 10:34:01 PM ******/
|
||
SET ANSI_NULLS ON
|
||
GO
|
||
SET QUOTED_IDENTIFIER ON
|
||
GO
|
||
IF NOT EXISTS (SELECT * FROM sys.views WHERE object_id = OBJECT_ID(N'[dbo].[Connector Rectangular]'))
|
||
EXEC dbo.sp_executesql @statement = N'CREATE VIEW [dbo].[Connector Rectangular]
|
||
AS
|
||
SELECT PartId, Comment, MfrPartNo AS [Part Number], Manufacturer, Description, Supplier1 AS [Supplier 1], Supplier1PartNo AS [Supplier Part Number 1], FootprintRef AS [Footprint Ref], FootprintPath AS [Footprint Path],
|
||
SymbolRef AS [Library Ref], SymbolPath AS [Library Path], ComponentLink1Description, ComponentLink1URL, ComponentLink2Description, ComponentLink2URL, ComponentLink3Description,
|
||
ComponentLink3URL, TemperatureRange, Tolerance, Voltage, Supplier2 AS [Supplier 2], Supplier2PartNo AS [Supplier Part Number 2], FootprintRef2 AS [Footprint Ref 2], FootprintPath2 AS [Footprint Path 2],
|
||
FootprintRef3 AS [Footprint Ref 3], FootprintPath3 AS [Footprint Path 3], Price, Type, ContactFinish AS [Contact Finish], FasteningType AS [Fastening Type], Pitch, NumberOfLevels AS [Number Of Rows],
|
||
NumberOfPositions AS [Number Of Positions], Colour, Series
|
||
FROM dbo.Components
|
||
WHERE (ComponentType = ''CONN'') AND (ComponentSubType = ''RECT'')
|
||
'
|
||
GO
|
||
/****** Object: View [dbo].[Connector Terminal Block] Script Date: 2016-01-08 10:34:01 PM ******/
|
||
SET ANSI_NULLS ON
|
||
GO
|
||
SET QUOTED_IDENTIFIER ON
|
||
GO
|
||
IF NOT EXISTS (SELECT * FROM sys.views WHERE object_id = OBJECT_ID(N'[dbo].[Connector Terminal Block]'))
|
||
EXEC dbo.sp_executesql @statement = N'CREATE VIEW [dbo].[Connector Terminal Block]
|
||
AS
|
||
SELECT PartId, Comment, MfrPartNo AS [Part Number], Manufacturer, Description, Supplier1 AS [Supplier 1], Supplier1PartNo AS [Supplier Part Number 1], FootprintRef AS [Footprint Ref], FootprintPath AS [Footprint Path],
|
||
SymbolRef AS [Library Ref], SymbolPath AS [Library Path], ComponentLink1Description, ComponentLink1URL, ComponentLink2Description, ComponentLink2URL, ComponentLink3Description,
|
||
ComponentLink3URL, TemperatureRange, Tolerance, Voltage, Supplier2 AS [Supplier 2], Supplier2PartNo AS [Supplier Part Number 2], FootprintRef2 AS [Footprint Ref 2], FootprintPath2 AS [Footprint Path 2],
|
||
FootprintRef3 AS [Footprint Ref 3], FootprintPath3 AS [Footprint Path 3], Price, Type, ContactFinish AS [Contact Finish], FasteningType AS [Fastening Type], Pitch, NumberOfPositions AS [Number Of Positions],
|
||
Colour, Orientation, NumberOfLevels AS [Number Of Levels], PositionsPerLevel AS [Positions Per Level]
|
||
FROM dbo.Components
|
||
WHERE (ComponentType = ''CONN'') AND (ComponentSubType = ''TERM'')
|
||
'
|
||
GO
|
||
/****** Object: View [dbo].[Connector USB] Script Date: 2016-01-08 10:34:01 PM ******/
|
||
SET ANSI_NULLS ON
|
||
GO
|
||
SET QUOTED_IDENTIFIER ON
|
||
GO
|
||
IF NOT EXISTS (SELECT * FROM sys.views WHERE object_id = OBJECT_ID(N'[dbo].[Connector USB]'))
|
||
EXEC dbo.sp_executesql @statement = N'CREATE VIEW [dbo].[Connector USB]
|
||
AS
|
||
SELECT PartId, Comment, MfrPartNo AS [Part Number], Manufacturer, Description, Supplier1 AS [Supplier 1], Supplier1PartNo AS [Supplier Part Number 1], FootprintRef AS [Footprint Ref], FootprintPath AS [Footprint Path],
|
||
SymbolRef AS [Library Ref], SymbolPath AS [Library Path], ComponentLink1Description, ComponentLink1URL, ComponentLink2Description, ComponentLink2URL, ComponentLink3Description,
|
||
ComponentLink3URL, TemperatureRange, Tolerance, Voltage, Supplier2 AS [Supplier 2], Supplier2PartNo AS [Supplier Part Number 2], FootprintRef2 AS [Footprint Ref 2], FootprintPath2 AS [Footprint Path 2],
|
||
FootprintRef3 AS [Footprint Ref 3], FootprintPath3 AS [Footprint Path 3], Price, Type, NumberOfPositions AS [Number Of Positions], Series
|
||
FROM dbo.Components
|
||
WHERE (ComponentType = ''CONN'') AND (ComponentSubType = ''USB'')
|
||
'
|
||
GO
|
||
/****** Object: View [dbo].[Digital to Analogue Converter] Script Date: 2016-01-08 10:34:01 PM ******/
|
||
SET ANSI_NULLS ON
|
||
GO
|
||
SET QUOTED_IDENTIFIER ON
|
||
GO
|
||
IF NOT EXISTS (SELECT * FROM sys.views WHERE object_id = OBJECT_ID(N'[dbo].[Digital to Analogue Converter]'))
|
||
EXEC dbo.sp_executesql @statement = N'CREATE VIEW [dbo].[Digital to Analogue Converter]
|
||
AS
|
||
SELECT TOP (100) PERCENT PartId, Value, Comment, MfrPartNo AS [Part Number], Manufacturer, Description, Supplier1 AS [Supplier 1], Supplier1PartNo AS [Supplier Part Number 1], FootprintRef AS [Footprint Ref],
|
||
FootprintPath AS [Footprint Path], SymbolRef AS [Library Ref], SymbolPath AS [Library Path], ComponentLink1Description, ComponentLink1URL, ComponentLink2Description, ComponentLink2URL,
|
||
ComponentLink3Description, ComponentLink3URL, Supplier2 AS [Supplier 2], Supplier2PartNo AS [Supplier Part Number 2], FootprintRef2 AS [Footprint Ref 2], FootprintPath2 AS [Footprint Path 2],
|
||
FootprintRef3 AS [Footprint Ref 3], FootprintPath3 AS [Footprint Path 3], Price, Type, DevicePackage AS [Device Package], NumberOfBits AS [Number of Bits], DataInterface AS [Data Interface],
|
||
NumberOfConverters AS [Number of Converters], TemperatureRange AS [Operating Temperature]
|
||
FROM dbo.Components
|
||
WHERE (ComponentType = ''DAC'')
|
||
'
|
||
GO
|
||
/****** Object: View [dbo].[Diode Rectifier] Script Date: 2016-01-08 10:34:01 PM ******/
|
||
SET ANSI_NULLS ON
|
||
GO
|
||
SET QUOTED_IDENTIFIER ON
|
||
GO
|
||
IF NOT EXISTS (SELECT * FROM sys.views WHERE object_id = OBJECT_ID(N'[dbo].[Diode Rectifier]'))
|
||
EXEC dbo.sp_executesql @statement = N'CREATE VIEW [dbo].[Diode Rectifier]
|
||
AS
|
||
SELECT PartId, Comment, MfrPartNo AS [Part Number], Manufacturer, Description, Supplier1 AS [Supplier 1], Supplier1PartNo AS [Supplier Part Number 1], FootprintRef AS [Footprint Ref], FootprintPath AS [Footprint Path],
|
||
SymbolRef AS [Library Ref], SymbolPath AS [Library Path], ComponentLink1Description, ComponentLink1URL, ComponentLink2Description, ComponentLink2URL, ComponentLink3Description,
|
||
ComponentLink3URL, TemperatureRange AS [Junction Operating Temperature], Supplier2 AS [Supplier 2], Supplier2PartNo AS [Supplier Part Number 2], FootprintRef2 AS [Footprint Ref 2],
|
||
FootprintPath2 AS [Footprint Path 2], FootprintRef3 AS [Footprint Ref 3], FootprintPath3 AS [Footprint Path 3], Price, Type, DevicePackage AS [Device Package],
|
||
CurrentReverseLeakage AS [Current Reverse Leakage @ Vr], ReverseRecoveryTime AS [Reverse Recovery Time (trr)], VoltageDcReverse AS [Voltage DC Reverse (Vr)], CurrentRectified AS [Current Rectified],
|
||
VoltageForward AS [Voltage Forward (Vf)]
|
||
FROM dbo.Components
|
||
WHERE (ComponentType = ''DIO'') AND (ComponentSubType = ''RECT'')
|
||
'
|
||
GO
|
||
/****** Object: View [dbo].[Diode TVS] Script Date: 2016-01-08 10:34:01 PM ******/
|
||
SET ANSI_NULLS ON
|
||
GO
|
||
SET QUOTED_IDENTIFIER ON
|
||
GO
|
||
IF NOT EXISTS (SELECT * FROM sys.views WHERE object_id = OBJECT_ID(N'[dbo].[Diode TVS]'))
|
||
EXEC dbo.sp_executesql @statement = N'CREATE VIEW [dbo].[Diode TVS]
|
||
AS
|
||
SELECT PartId, Comment, MfrPartNo AS [Part Number], Manufacturer, Description, Supplier1 AS [Supplier 1], Supplier1PartNo AS [Supplier Part Number 1], FootprintRef AS [Footprint Ref], FootprintPath AS [Footprint Path],
|
||
SymbolRef AS [Library Ref], SymbolPath AS [Library Path], ComponentLink1Description, ComponentLink1URL, ComponentLink2Description, ComponentLink2URL, ComponentLink3Description,
|
||
ComponentLink3URL, TemperatureRange AS [Junction Operating Temperature], Supplier2 AS [Supplier 2], Supplier2PartNo AS [Supplier Part Number 2], FootprintRef2 AS [Footprint Ref 2],
|
||
FootprintPath2 AS [Footprint Path 2], FootprintRef3 AS [Footprint Ref 3], FootprintPath3 AS [Footprint Path 3], Price, Type, DevicePackage AS [Device Package], PowerPeakPulse AS [Power - Peak Pulse],
|
||
CurrentPulsePeak AS [Current - Peak Pulse], VoltageClamping AS [Voltage (Clamping)], VoltageBreakdown AS [Voltage (Breakdown)], VoltageReverseStandoff AS [Voltage (Reverse Standoff)]
|
||
FROM dbo.Components
|
||
WHERE (ComponentType = ''DIO'') AND (ComponentSubType = ''TVS'')
|
||
'
|
||
GO
|
||
/****** Object: View [dbo].[Ferrite Chip] Script Date: 2016-01-08 10:34:01 PM ******/
|
||
SET ANSI_NULLS ON
|
||
GO
|
||
SET QUOTED_IDENTIFIER ON
|
||
GO
|
||
IF NOT EXISTS (SELECT * FROM sys.views WHERE object_id = OBJECT_ID(N'[dbo].[Ferrite Chip]'))
|
||
EXEC dbo.sp_executesql @statement = N'CREATE VIEW [dbo].[Ferrite Chip]
|
||
AS
|
||
SELECT PartId, Value, Comment, MfrPartNo AS [Part Number], Manufacturer, Description, Supplier1 AS [Supplier 1], Supplier1PartNo AS [Supplier Part Number 1], FootprintRef AS [Footprint Ref],
|
||
FootprintPath AS [Footprint Path], SymbolRef AS [Library Ref], SymbolPath AS [Library Path], ComponentLink1Description, ComponentLink1URL, ComponentLink2Description, ComponentLink2URL,
|
||
ComponentLink3Description, ComponentLink3URL, Supplier2 AS [Supplier 2], Supplier2PartNo AS [Supplier Part Number 2], FootprintRef2 AS [Footprint Ref 2], FootprintPath2 AS [Footprint Path 2],
|
||
FootprintRef3 AS [Footprint Ref 3], FootprintPath3 AS [Footprint Path 3], Price, Type, DevicePackage AS [Device Package], DCResistance AS [DC Resistance], CurrentRating AS [Current Rating]
|
||
FROM dbo.Components
|
||
WHERE (ComponentType = N''FER'')
|
||
'
|
||
GO
|
||
/****** Object: View [dbo].[Inductor RF] Script Date: 2016-01-08 10:34:01 PM ******/
|
||
SET ANSI_NULLS ON
|
||
GO
|
||
SET QUOTED_IDENTIFIER ON
|
||
GO
|
||
IF NOT EXISTS (SELECT * FROM sys.views WHERE object_id = OBJECT_ID(N'[dbo].[Inductor RF]'))
|
||
EXEC dbo.sp_executesql @statement = N'CREATE VIEW [dbo].[Inductor RF]
|
||
AS
|
||
SELECT PartId, Value, Comment, MfrPartNo AS [Part Number], Manufacturer, Description, Supplier1 AS [Supplier 1], Supplier1PartNo AS [Supplier Part Number 1], FootprintRef AS [Footprint Ref],
|
||
FootprintPath AS [Footprint Path], SymbolRef AS [Library Ref], SymbolPath AS [Library Path], ComponentLink1Description, ComponentLink1URL, ComponentLink2Description, ComponentLink2URL,
|
||
ComponentLink3Description, ComponentLink3URL, TemperatureRange, TemperatureCoefficient, Dielectric, Tolerance, Supplier2 AS [Supplier 2], Supplier2PartNo AS [Supplier Part Number 2],
|
||
FootprintRef2 AS [Footprint Ref 2], FootprintPath2 AS [Footprint Path 2], FootprintRef3 AS [Footprint Ref 3], FootprintPath3 AS [Footprint Path 3], Price, Type, QatFrequency AS [Q at Frequency],
|
||
DevicePackage AS [Device Package], DCResistance AS [DC Resistance], Shielding
|
||
FROM dbo.Components
|
||
WHERE (ComponentType = ''IND'') AND (ComponentSubType = ''RF'')
|
||
'
|
||
GO
|
||
/****** Object: View [dbo].[LCD Display - Graphic] Script Date: 2016-01-08 10:34:01 PM ******/
|
||
SET ANSI_NULLS ON
|
||
GO
|
||
SET QUOTED_IDENTIFIER ON
|
||
GO
|
||
IF NOT EXISTS (SELECT * FROM sys.views WHERE object_id = OBJECT_ID(N'[dbo].[LCD Display - Graphic]'))
|
||
EXEC dbo.sp_executesql @statement = N'CREATE VIEW [dbo].[LCD Display - Graphic]
|
||
AS
|
||
SELECT TOP (100) PERCENT PartId, Value, Comment, MfrPartNo AS [Part Number], Manufacturer, Description, Supplier1 AS [Supplier 1], Supplier1PartNo AS [Supplier Part Number 1], FootprintRef AS [Footprint Ref],
|
||
FootprintPath AS [Footprint Path], SymbolRef AS [Library Ref], SymbolPath AS [Library Path], ComponentLink1Description, ComponentLink1URL, ComponentLink2Description, ComponentLink2URL,
|
||
ComponentLink3Description, ComponentLink3URL, Supplier2 AS [Supplier 2], Supplier2PartNo AS [Supplier Part Number 2], FootprintRef2 AS [Footprint Ref 2], FootprintPath2 AS [Footprint Path 2],
|
||
FootprintRef3 AS [Footprint Ref 3], FootprintPath3 AS [Footprint Path 3], Price, Type, DevicePackage AS [Device Package], DisplayType AS [Display Type], DisplayMode AS [Display Mode], Touchscreen,
|
||
ViewingArea AS [Viewing Area], Backlight, DiagonalScreenSize AS [Diagonal Screen Size], DotPixels AS [Dot Pixels], GraphicsColour AS [Graphics Colour], BackgroundColour AS [Background Colour],
|
||
DotSize AS [Dot Size], DotPitch AS [Dot Pitch], DataInterface AS [Data Interface]
|
||
FROM dbo.Components
|
||
WHERE (ComponentType = ''LCD'') AND (ComponentSubType = ''GRAPHIC'')
|
||
'
|
||
GO
|
||
/****** Object: View [dbo].[MCU - ARM] Script Date: 2016-01-08 10:34:01 PM ******/
|
||
SET ANSI_NULLS ON
|
||
GO
|
||
SET QUOTED_IDENTIFIER ON
|
||
GO
|
||
IF NOT EXISTS (SELECT * FROM sys.views WHERE object_id = OBJECT_ID(N'[dbo].[MCU - ARM]'))
|
||
EXEC dbo.sp_executesql @statement = N'CREATE VIEW [dbo].[MCU - ARM]
|
||
AS
|
||
SELECT TOP (100) PERCENT PartId, Value, Comment, MfrPartNo AS [Part Number], Manufacturer, Description, Supplier1 AS [Supplier 1], Supplier1PartNo AS [Supplier Part Number 1], FootprintRef AS [Footprint Ref],
|
||
FootprintPath AS [Footprint Path], SymbolRef AS [Library Ref], SymbolPath AS [Library Path], ComponentLink1Description, ComponentLink1URL, ComponentLink2Description, ComponentLink2URL,
|
||
ComponentLink3Description, ComponentLink3URL, Supplier2 AS [Supplier 2], Supplier2PartNo AS [Supplier Part Number 2], FootprintRef2 AS [Footprint Ref 2], FootprintPath2 AS [Footprint Path 2],
|
||
FootprintRef3 AS [Footprint Ref 3], FootprintPath3 AS [Footprint Path 3], Price, Type, DevicePackage AS [Device Package], Series, CoreProcessor AS [Core Processor], CoreSize AS [Core Size], Speed, Connectivity,
|
||
Peripherals, NumberOfIO AS [Number Of IO], ProgramMemorySize AS [Program Memory Size], ProgramMemoryType AS [Program Memory Type], EepromSize AS [EEPROM Size], RamSize AS [Ram Size], Voltage,
|
||
DataConverters AS [Data Converters], OscillatorType AS [Oscillator Type]
|
||
FROM dbo.Components
|
||
WHERE (ComponentType = ''MCU'') AND (ComponentSubType = ''ARM'')
|
||
'
|
||
GO
|
||
/****** Object: View [dbo].[MCU - AVR] Script Date: 2016-01-08 10:34:01 PM ******/
|
||
SET ANSI_NULLS ON
|
||
GO
|
||
SET QUOTED_IDENTIFIER ON
|
||
GO
|
||
IF NOT EXISTS (SELECT * FROM sys.views WHERE object_id = OBJECT_ID(N'[dbo].[MCU - AVR]'))
|
||
EXEC dbo.sp_executesql @statement = N'CREATE VIEW [dbo].[MCU - AVR]
|
||
AS
|
||
SELECT TOP (100) PERCENT PartId, Value, Comment, MfrPartNo AS [Part Number], Manufacturer, Description, Supplier1 AS [Supplier 1], Supplier1PartNo AS [Supplier Part Number 1], FootprintRef AS [Footprint Ref],
|
||
FootprintPath AS [Footprint Path], SymbolRef AS [Library Ref], SymbolPath AS [Library Path], ComponentLink1Description, ComponentLink1URL, ComponentLink2Description, ComponentLink2URL,
|
||
ComponentLink3Description, ComponentLink3URL, Supplier2 AS [Supplier 2], Supplier2PartNo AS [Supplier Part Number 2], FootprintRef2 AS [Footprint Ref 2], FootprintPath2 AS [Footprint Path 2],
|
||
FootprintRef3 AS [Footprint Ref 3], FootprintPath3 AS [Footprint Path 3], Price, Type, DevicePackage AS [Device Package], Series, CoreProcessor AS [Core Processor], CoreSize AS [Core Size], Speed, Connectivity,
|
||
Peripherals, NumberOfIO AS [Number Of IO], ProgramMemorySize AS [Program Memory Size], ProgramMemoryType AS [Program Memory Type], EepromSize AS [EEPROM Size], RamSize AS [Ram Size], Voltage,
|
||
DataConverters AS [Data Converters], OscillatorType AS [Oscillator Type]
|
||
FROM dbo.Components
|
||
WHERE (ComponentType = ''MCU'') AND (ComponentSubType = ''AVR'')
|
||
'
|
||
GO
|
||
/****** Object: View [dbo].[Memory - EEPROM] Script Date: 2016-01-08 10:34:01 PM ******/
|
||
SET ANSI_NULLS ON
|
||
GO
|
||
SET QUOTED_IDENTIFIER ON
|
||
GO
|
||
IF NOT EXISTS (SELECT * FROM sys.views WHERE object_id = OBJECT_ID(N'[dbo].[Memory - EEPROM]'))
|
||
EXEC dbo.sp_executesql @statement = N'CREATE VIEW [dbo].[Memory - EEPROM]
|
||
AS
|
||
SELECT TOP (100) PERCENT PartId, Value, Comment, MfrPartNo AS [Part Number], Manufacturer, Description, Supplier1 AS [Supplier 1], Supplier1PartNo AS [Supplier Part Number 1], FootprintRef AS [Footprint Ref],
|
||
FootprintPath AS [Footprint Path], SymbolRef AS [Library Ref], SymbolPath AS [Library Path], ComponentLink1Description, ComponentLink1URL, ComponentLink2Description, ComponentLink2URL,
|
||
ComponentLink3Description, ComponentLink3URL, Supplier2 AS [Supplier 2], Supplier2PartNo AS [Supplier Part Number 2], FootprintRef2 AS [Footprint Ref 2], FootprintPath2 AS [Footprint Path 2],
|
||
FootprintRef3 AS [Footprint Ref 3], FootprintPath3 AS [Footprint Path 3], Price, Type, DevicePackage AS [Device Package], TemperatureRange AS [Operating Temperature], Type AS [Memory Type],
|
||
MemorySize AS [Memory Size], Speed, DataInterface AS Interface, Voltage AS [Voltage - Supply]
|
||
FROM dbo.Components
|
||
WHERE (ComponentType = ''MEM'') AND (ComponentSubType = ''EEPROM'')
|
||
'
|
||
GO
|
||
/****** Object: View [dbo].[Memory - FLASH] Script Date: 2016-01-08 10:34:01 PM ******/
|
||
SET ANSI_NULLS ON
|
||
GO
|
||
SET QUOTED_IDENTIFIER ON
|
||
GO
|
||
IF NOT EXISTS (SELECT * FROM sys.views WHERE object_id = OBJECT_ID(N'[dbo].[Memory - FLASH]'))
|
||
EXEC dbo.sp_executesql @statement = N'CREATE VIEW [dbo].[Memory - FLASH]
|
||
AS
|
||
SELECT TOP (100) PERCENT PartId, Value, Comment, MfrPartNo AS [Part Number], Manufacturer, Description, Supplier1 AS [Supplier 1], Supplier1PartNo AS [Supplier Part Number 1], FootprintRef AS [Footprint Ref],
|
||
FootprintPath AS [Footprint Path], SymbolRef AS [Library Ref], SymbolPath AS [Library Path], ComponentLink1Description, ComponentLink1URL, ComponentLink2Description, ComponentLink2URL,
|
||
ComponentLink3Description, ComponentLink3URL, Supplier2 AS [Supplier 2], Supplier2PartNo AS [Supplier Part Number 2], FootprintRef2 AS [Footprint Ref 2], FootprintPath2 AS [Footprint Path 2],
|
||
FootprintRef3 AS [Footprint Ref 3], FootprintPath3 AS [Footprint Path 3], Price, Type, DevicePackage AS [Device Package], TemperatureRange AS [Operating Temperature], Type AS [Memory Type],
|
||
MemorySize AS [Memory Size], Speed, DataInterface AS Interface, Voltage AS [Voltage - Supply]
|
||
FROM dbo.Components
|
||
WHERE (ComponentType = ''MEM'') AND (ComponentSubType = ''FLASH'')
|
||
'
|
||
GO
|
||
/****** Object: View [dbo].[N-Channel Dual FET Array] Script Date: 2016-01-08 10:34:01 PM ******/
|
||
SET ANSI_NULLS ON
|
||
GO
|
||
SET QUOTED_IDENTIFIER ON
|
||
GO
|
||
IF NOT EXISTS (SELECT * FROM sys.views WHERE object_id = OBJECT_ID(N'[dbo].[N-Channel Dual FET Array]'))
|
||
EXEC dbo.sp_executesql @statement = N'CREATE VIEW [dbo].[N-Channel Dual FET Array]
|
||
AS
|
||
SELECT TOP (100) PERCENT PartId, Value, Comment, MfrPartNo AS [Part Number], Manufacturer, Description, Supplier1 AS [Supplier 1], Supplier1PartNo AS [Supplier Part Number 1], FootprintRef AS [Footprint Ref],
|
||
FootprintPath AS [Footprint Path], SymbolRef AS [Library Ref], SymbolPath AS [Library Path], ComponentLink1Description, ComponentLink1URL, ComponentLink2Description, ComponentLink2URL,
|
||
ComponentLink3Description, ComponentLink3URL, Supplier2 AS [Supplier 2], Supplier2PartNo AS [Supplier Part Number 2], FootprintRef2 AS [Footprint Ref 2], FootprintPath2 AS [Footprint Path 2],
|
||
FootprintRef3 AS [Footprint Ref 3], FootprintPath3 AS [Footprint Path 3], Price, Type, DevicePackage AS [Device Package], RdsOnMax AS [Rds On (Max) at Id, Vgs], VgsthMax AS [Vgs(th) (Max) at Id],
|
||
GateCharge AS [Gate Charge (Qg)], InputCapacitance AS [Input Capacitance (Ciss) at Vds], PowerMax AS [Power - Max], DrainToSourceVoltage AS [Drain to Source Voltage (Vdss)], Features,
|
||
CurrentRating AS [Current Continuous Drain]
|
||
FROM dbo.Components
|
||
WHERE (ComponentType = ''FET'') AND (ComponentSubType = ''NCH-DUAL'')
|
||
'
|
||
GO
|
||
/****** Object: View [dbo].[N-Channel FET] Script Date: 2016-01-08 10:34:01 PM ******/
|
||
SET ANSI_NULLS ON
|
||
GO
|
||
SET QUOTED_IDENTIFIER ON
|
||
GO
|
||
IF NOT EXISTS (SELECT * FROM sys.views WHERE object_id = OBJECT_ID(N'[dbo].[N-Channel FET]'))
|
||
EXEC dbo.sp_executesql @statement = N'CREATE VIEW [dbo].[N-Channel FET]
|
||
AS
|
||
SELECT TOP (100) PERCENT PartId, Value, Comment, MfrPartNo AS [Part Number], Manufacturer, Description, Supplier1 AS [Supplier 1], Supplier1PartNo AS [Supplier Part Number 1], FootprintRef AS [Footprint Ref],
|
||
FootprintPath AS [Footprint Path], SymbolRef AS [Library Ref], SymbolPath AS [Library Path], ComponentLink1Description, ComponentLink1URL, ComponentLink2Description, ComponentLink2URL,
|
||
ComponentLink3Description, ComponentLink3URL, Supplier2 AS [Supplier 2], Supplier2PartNo AS [Supplier Part Number 2], FootprintRef2 AS [Footprint Ref 2], FootprintPath2 AS [Footprint Path 2],
|
||
FootprintRef3 AS [Footprint Ref 3], FootprintPath3 AS [Footprint Path 3], Price, Type, DevicePackage AS [Device Package], RdsOnMax AS [Rds On (Max) at Id, Vgs], VgsthMax AS [Vgs(th) (Max) at Id],
|
||
GateCharge AS [Gate Charge (Qg)], InputCapacitance AS [Input Capacitance (Ciss) at Vds], PowerMax AS [Power - Max], DrainToSourceVoltage AS [Drain to Source Voltage (Vdss)], Features,
|
||
CurrentRating AS [Current Continuous Drain]
|
||
FROM dbo.Components
|
||
WHERE (ComponentType = ''FET'') AND (ComponentSubType = ''NCH'')
|
||
'
|
||
GO
|
||
/****** Object: View [dbo].[Oscillator - Crystal] Script Date: 2016-01-08 10:34:01 PM ******/
|
||
SET ANSI_NULLS ON
|
||
GO
|
||
SET QUOTED_IDENTIFIER ON
|
||
GO
|
||
IF NOT EXISTS (SELECT * FROM sys.views WHERE object_id = OBJECT_ID(N'[dbo].[Oscillator - Crystal]'))
|
||
EXEC dbo.sp_executesql @statement = N'CREATE VIEW [dbo].[Oscillator - Crystal]
|
||
AS
|
||
SELECT TOP (100) PERCENT PartId, Value, Comment, MfrPartNo AS [Part Number], Manufacturer, Description, Supplier1 AS [Supplier 1], Supplier1PartNo AS [Supplier Part Number 1], FootprintRef AS [Footprint Ref],
|
||
FootprintPath AS [Footprint Path], SymbolRef AS [Library Ref], SymbolPath AS [Library Path], ComponentLink1Description, ComponentLink1URL, ComponentLink2Description, ComponentLink2URL,
|
||
ComponentLink3Description, ComponentLink3URL, Supplier2 AS [Supplier 2], Supplier2PartNo AS [Supplier Part Number 2], FootprintRef2 AS [Footprint Ref 2], FootprintPath2 AS [Footprint Path 2],
|
||
FootprintRef3 AS [Footprint Ref 3], FootprintPath3 AS [Footprint Path 3], Price, Type, DevicePackage AS [Device Package], Series, Frequency, FrequencyStability AS [Frequency Stability],
|
||
Tolerance AS [Frequency Tolerance], LoadCapacitance AS [Load Capacitance], ESR, OperatingMode AS [Operating Mode]
|
||
FROM dbo.Components
|
||
WHERE (ComponentType = ''OSC'') AND (ComponentSubType = ''CRYSTAL'')
|
||
'
|
||
GO
|
||
/****** Object: View [dbo].[Oscillator - MEMS] Script Date: 2016-01-08 10:34:01 PM ******/
|
||
SET ANSI_NULLS ON
|
||
GO
|
||
SET QUOTED_IDENTIFIER ON
|
||
GO
|
||
IF NOT EXISTS (SELECT * FROM sys.views WHERE object_id = OBJECT_ID(N'[dbo].[Oscillator - MEMS]'))
|
||
EXEC dbo.sp_executesql @statement = N'CREATE VIEW [dbo].[Oscillator - MEMS]
|
||
AS
|
||
SELECT TOP (100) PERCENT PartId, Value, Comment, MfrPartNo AS [Part Number], Manufacturer, Description, Supplier1 AS [Supplier 1], Supplier1PartNo AS [Supplier Part Number 1], FootprintRef AS [Footprint Ref],
|
||
FootprintPath AS [Footprint Path], SymbolRef AS [Library Ref], SymbolPath AS [Library Path], ComponentLink1Description, ComponentLink1URL, ComponentLink2Description, ComponentLink2URL,
|
||
ComponentLink3Description, ComponentLink3URL, Supplier2 AS [Supplier 2], Supplier2PartNo AS [Supplier Part Number 2], FootprintRef2 AS [Footprint Ref 2], FootprintPath2 AS [Footprint Path 2],
|
||
FootprintRef3 AS [Footprint Ref 3], FootprintPath3 AS [Footprint Path 3], Price, Type, DevicePackage AS [Device Package], Series, Frequency, FrequencyStability AS [Frequency Stability],
|
||
Tolerance AS [Frequency Tolerance], LoadCapacitance AS [Load Capacitance], ESR, OperatingMode AS [Operating Mode]
|
||
FROM dbo.Components
|
||
WHERE (ComponentType = ''OSC'') AND (ComponentSubType = ''MEMS'')
|
||
'
|
||
GO
|
||
/****** Object: View [dbo].[Oscillator - TCXO] Script Date: 2016-01-08 10:34:01 PM ******/
|
||
SET ANSI_NULLS ON
|
||
GO
|
||
SET QUOTED_IDENTIFIER ON
|
||
GO
|
||
IF NOT EXISTS (SELECT * FROM sys.views WHERE object_id = OBJECT_ID(N'[dbo].[Oscillator - TCXO]'))
|
||
EXEC dbo.sp_executesql @statement = N'CREATE VIEW [dbo].[Oscillator - TCXO]
|
||
AS
|
||
SELECT TOP (100) PERCENT PartId, Value, Comment, MfrPartNo AS [Part Number], Manufacturer, Description, Supplier1 AS [Supplier 1], Supplier1PartNo AS [Supplier Part Number 1], FootprintRef AS [Footprint Ref],
|
||
FootprintPath AS [Footprint Path], SymbolRef AS [Library Ref], SymbolPath AS [Library Path], ComponentLink1Description, ComponentLink1URL, ComponentLink2Description, ComponentLink2URL,
|
||
ComponentLink3Description, ComponentLink3URL, Supplier2 AS [Supplier 2], Supplier2PartNo AS [Supplier Part Number 2], FootprintRef2 AS [Footprint Ref 2], FootprintPath2 AS [Footprint Path 2],
|
||
FootprintRef3 AS [Footprint Ref 3], FootprintPath3 AS [Footprint Path 3], Price, Type, DevicePackage AS [Device Package], Series, Frequency, FrequencyStability AS [Frequency Stability],
|
||
Tolerance AS [Frequency Tolerance], LoadCapacitance AS [Load Capacitance], ESR, OperatingMode AS [Operating Mode]
|
||
FROM dbo.Components
|
||
WHERE (ComponentType = ''OSC'') AND (ComponentSubType = ''TCXO'')
|
||
'
|
||
GO
|
||
/****** Object: View [dbo].[Oscillator - VCTCXO] Script Date: 2016-01-08 10:34:01 PM ******/
|
||
SET ANSI_NULLS ON
|
||
GO
|
||
SET QUOTED_IDENTIFIER ON
|
||
GO
|
||
IF NOT EXISTS (SELECT * FROM sys.views WHERE object_id = OBJECT_ID(N'[dbo].[Oscillator - VCTCXO]'))
|
||
EXEC dbo.sp_executesql @statement = N'CREATE VIEW [dbo].[Oscillator - VCTCXO]
|
||
AS
|
||
SELECT TOP (100) PERCENT PartId, Value, Comment, MfrPartNo AS [Part Number], Manufacturer, Description, Supplier1 AS [Supplier 1], Supplier1PartNo AS [Supplier Part Number 1], FootprintRef AS [Footprint Ref],
|
||
FootprintPath AS [Footprint Path], SymbolRef AS [Library Ref], SymbolPath AS [Library Path], ComponentLink1Description, ComponentLink1URL, ComponentLink2Description, ComponentLink2URL,
|
||
ComponentLink3Description, ComponentLink3URL, Supplier2 AS [Supplier 2], Supplier2PartNo AS [Supplier Part Number 2], FootprintRef2 AS [Footprint Ref 2], FootprintPath2 AS [Footprint Path 2],
|
||
FootprintRef3 AS [Footprint Ref 3], FootprintPath3 AS [Footprint Path 3], Price, Type, DevicePackage AS [Device Package], Series, Frequency, FrequencyStability AS [Frequency Stability],
|
||
Tolerance AS [Frequency Tolerance], LoadCapacitance AS [Load Capacitance], ESR, OperatingMode AS [Operating Mode]
|
||
FROM dbo.Components
|
||
WHERE (ComponentType = ''OSC'') AND (ComponentSubType = ''VCTCXO'')
|
||
'
|
||
GO
|
||
/****** Object: View [dbo].[Oscillator - XO] Script Date: 2016-01-08 10:34:01 PM ******/
|
||
SET ANSI_NULLS ON
|
||
GO
|
||
SET QUOTED_IDENTIFIER ON
|
||
GO
|
||
IF NOT EXISTS (SELECT * FROM sys.views WHERE object_id = OBJECT_ID(N'[dbo].[Oscillator - XO]'))
|
||
EXEC dbo.sp_executesql @statement = N'CREATE VIEW [dbo].[Oscillator - XO]
|
||
AS
|
||
SELECT TOP (100) PERCENT PartId, Value, Comment, MfrPartNo AS [Part Number], Manufacturer, Description, Supplier1 AS [Supplier 1], Supplier1PartNo AS [Supplier Part Number 1], FootprintRef AS [Footprint Ref],
|
||
FootprintPath AS [Footprint Path], SymbolRef AS [Library Ref], SymbolPath AS [Library Path], ComponentLink1Description, ComponentLink1URL, ComponentLink2Description, ComponentLink2URL,
|
||
ComponentLink3Description, ComponentLink3URL, Supplier2 AS [Supplier 2], Supplier2PartNo AS [Supplier Part Number 2], FootprintRef2 AS [Footprint Ref 2], FootprintPath2 AS [Footprint Path 2],
|
||
FootprintRef3 AS [Footprint Ref 3], FootprintPath3 AS [Footprint Path 3], Price, Type, DevicePackage AS [Device Package], Series, Frequency, FrequencyStability AS [Frequency Stability],
|
||
Tolerance AS [Frequency Tolerance], LoadCapacitance AS [Load Capacitance], ESR, OperatingMode AS [Operating Mode]
|
||
FROM dbo.Components
|
||
WHERE (ComponentType = ''OSC'') AND (ComponentSubType = ''XO'')
|
||
'
|
||
GO
|
||
/****** Object: View [dbo].[P-Channel Dual FET Array] Script Date: 2016-01-08 10:34:01 PM ******/
|
||
SET ANSI_NULLS ON
|
||
GO
|
||
SET QUOTED_IDENTIFIER ON
|
||
GO
|
||
IF NOT EXISTS (SELECT * FROM sys.views WHERE object_id = OBJECT_ID(N'[dbo].[P-Channel Dual FET Array]'))
|
||
EXEC dbo.sp_executesql @statement = N'CREATE VIEW [dbo].[P-Channel Dual FET Array]
|
||
AS
|
||
SELECT TOP (100) PERCENT PartId, Value, Comment, MfrPartNo AS [Part Number], Manufacturer, Description, Supplier1 AS [Supplier 1], Supplier1PartNo AS [Supplier Part Number 1], FootprintRef AS [Footprint Ref],
|
||
FootprintPath AS [Footprint Path], SymbolRef AS [Library Ref], SymbolPath AS [Library Path], ComponentLink1Description, ComponentLink1URL, ComponentLink2Description, ComponentLink2URL,
|
||
ComponentLink3Description, ComponentLink3URL, Supplier2 AS [Supplier 2], Supplier2PartNo AS [Supplier Part Number 2], FootprintRef2 AS [Footprint Ref 2], FootprintPath2 AS [Footprint Path 2],
|
||
FootprintRef3 AS [Footprint Ref 3], FootprintPath3 AS [Footprint Path 3], Price, Type, DevicePackage AS [Device Package], RdsOnMax AS [Rds On (Max) at Id, Vgs], VgsthMax AS [Vgs(th) (Max) at Id],
|
||
GateCharge AS [Gate Charge (Qg)], InputCapacitance AS [Input Capacitance (Ciss) at Vds], PowerMax AS [Power - Max], DrainToSourceVoltage AS [Drain to Source Voltage (Vdss)], Features,
|
||
CurrentRating AS [Current Continuous Drain]
|
||
FROM dbo.Components
|
||
WHERE (ComponentType = ''FET'') AND (ComponentSubType = ''PCH-DUAL'')
|
||
'
|
||
GO
|
||
/****** Object: View [dbo].[P-Channel FET] Script Date: 2016-01-08 10:34:01 PM ******/
|
||
SET ANSI_NULLS ON
|
||
GO
|
||
SET QUOTED_IDENTIFIER ON
|
||
GO
|
||
IF NOT EXISTS (SELECT * FROM sys.views WHERE object_id = OBJECT_ID(N'[dbo].[P-Channel FET]'))
|
||
EXEC dbo.sp_executesql @statement = N'CREATE VIEW [dbo].[P-Channel FET]
|
||
AS
|
||
SELECT TOP (100) PERCENT PartId, Value, Comment, MfrPartNo AS [Part Number], Manufacturer, Description, Supplier1 AS [Supplier 1], Supplier1PartNo AS [Supplier Part Number 1], FootprintRef AS [Footprint Ref],
|
||
FootprintPath AS [Footprint Path], SymbolRef AS [Library Ref], SymbolPath AS [Library Path], ComponentLink1Description, ComponentLink1URL, ComponentLink2Description, ComponentLink2URL,
|
||
ComponentLink3Description, ComponentLink3URL, Supplier2 AS [Supplier 2], Supplier2PartNo AS [Supplier Part Number 2], FootprintRef2 AS [Footprint Ref 2], FootprintPath2 AS [Footprint Path 2],
|
||
FootprintRef3 AS [Footprint Ref 3], FootprintPath3 AS [Footprint Path 3], Price, Type, DevicePackage AS [Device Package], RdsOnMax AS [Rds On (Max) at Id, Vgs], VgsthMax AS [Vgs(th) (Max) at Id],
|
||
GateCharge AS [Gate Charge (Qg)], InputCapacitance AS [Input Capacitance (Ciss) at Vds], PowerMax AS [Power - Max], DrainToSourceVoltage AS [Drain to Source Voltage (Vdss)], Features,
|
||
CurrentRating AS [Current Continuous Drain]
|
||
FROM dbo.Components
|
||
WHERE (ComponentType = ''FET'') AND (ComponentSubType = ''PCH'')
|
||
'
|
||
GO
|
||
/****** Object: View [dbo].[Resistor] Script Date: 2016-01-08 10:34:01 PM ******/
|
||
SET ANSI_NULLS ON
|
||
GO
|
||
SET QUOTED_IDENTIFIER ON
|
||
GO
|
||
IF NOT EXISTS (SELECT * FROM sys.views WHERE object_id = OBJECT_ID(N'[dbo].[Resistor]'))
|
||
EXEC dbo.sp_executesql @statement = N'CREATE VIEW [dbo].[Resistor]
|
||
AS
|
||
SELECT PartId, Value, Comment, MfrPartNo AS [Part Number], Manufacturer, Description, Supplier1 AS [Supplier 1], Supplier1PartNo AS [Supplier Part Number 1], FootprintRef AS [Footprint Ref],
|
||
FootprintPath AS [Footprint Path], SymbolRef AS [Library Ref], SymbolPath AS [Library Path], ComponentLink1Description, ComponentLink1URL, ComponentLink2Description, ComponentLink2URL,
|
||
ComponentLink3Description, ComponentLink3URL, TemperatureRange, TemperatureCoefficient, Tolerance, PowerRating, Supplier2 AS [Supplier 2], Supplier2PartNo AS [Supplier Part Number 2],
|
||
FootprintRef2 AS [Footprint Ref 2], FootprintPath2 AS [Footprint Path 2], FootprintRef3 AS [Footprint Ref 3], FootprintPath3 AS [Footprint Path 3], Price, Type, DevicePackage AS [Device Package]
|
||
FROM dbo.Components
|
||
WHERE (ComponentType = ''RES'') AND (ComponentSubType = '''' OR
|
||
ComponentSubType IS NULL)
|
||
'
|
||
GO
|
||
/****** Object: View [dbo].[Resistor Potentiometer] Script Date: 2016-01-08 10:34:01 PM ******/
|
||
SET ANSI_NULLS ON
|
||
GO
|
||
SET QUOTED_IDENTIFIER ON
|
||
GO
|
||
IF NOT EXISTS (SELECT * FROM sys.views WHERE object_id = OBJECT_ID(N'[dbo].[Resistor Potentiometer]'))
|
||
EXEC dbo.sp_executesql @statement = N'CREATE VIEW [dbo].[Resistor Potentiometer]
|
||
AS
|
||
SELECT PartId, Value, Comment, MfrPartNo AS [Part Number], Manufacturer, Description, Supplier1 AS [Supplier 1], Supplier1PartNo AS [Supplier Part Number 1], FootprintRef AS [Footprint Ref],
|
||
FootprintPath AS [Footprint Path], SymbolRef AS [Library Ref], SymbolPath AS [Library Path], ComponentLink1Description, ComponentLink1URL, ComponentLink2Description, ComponentLink2URL,
|
||
ComponentLink3Description, ComponentLink3URL, TemperatureRange, TemperatureCoefficient, Tolerance, PowerRating, Supplier2 AS [Supplier 2], Supplier2PartNo AS [Supplier Part Number 2],
|
||
FootprintRef2 AS [Footprint Ref 2], FootprintPath2 AS [Footprint Path 2], FootprintRef3 AS [Footprint Ref 3], FootprintPath3 AS [Footprint Path 3], Price, Type, DevicePackage AS [Device Package],
|
||
NumberOfTurns AS [Number Of Turns], AdjustmentType AS [Adjustment Type]
|
||
FROM dbo.Components
|
||
WHERE (ComponentType = ''RES'') AND (ComponentSubType = ''POT'')
|
||
'
|
||
GO
|
||
/****** Object: View [dbo].[RF Attenuator] Script Date: 2016-01-08 10:34:01 PM ******/
|
||
SET ANSI_NULLS ON
|
||
GO
|
||
SET QUOTED_IDENTIFIER ON
|
||
GO
|
||
IF NOT EXISTS (SELECT * FROM sys.views WHERE object_id = OBJECT_ID(N'[dbo].[RF Attenuator]'))
|
||
EXEC dbo.sp_executesql @statement = N'CREATE VIEW [dbo].[RF Attenuator]
|
||
AS
|
||
SELECT TOP (100) PERCENT PartId, Value, Comment, MfrPartNo AS [Part Number], Manufacturer, Description, Supplier1 AS [Supplier 1], Supplier1PartNo AS [Supplier Part Number 1], FootprintRef AS [Footprint Ref],
|
||
FootprintPath AS [Footprint Path], SymbolRef AS [Library Ref], SymbolPath AS [Library Path], ComponentLink1Description, ComponentLink1URL, ComponentLink2Description, ComponentLink2URL,
|
||
ComponentLink3Description, ComponentLink3URL, Supplier2 AS [Supplier 2], Supplier2PartNo AS [Supplier Part Number 2], FootprintRef2 AS [Footprint Ref 2], FootprintPath2 AS [Footprint Path 2],
|
||
FootprintRef3 AS [Footprint Ref 3], FootprintPath3 AS [Footprint Path 3], Price, Type, DevicePackage AS [Device Package], Impedance, Attenuation, Tolerance, Frequency AS [Frequency Range],
|
||
PowerRating AS [Power (Watts)]
|
||
FROM dbo.Components
|
||
WHERE (ComponentType = ''RFIC'') AND (ComponentSubType = ''ATTEN'')
|
||
'
|
||
GO
|
||
/****** Object: View [dbo].[RF Detector] Script Date: 2016-01-08 10:34:01 PM ******/
|
||
SET ANSI_NULLS ON
|
||
GO
|
||
SET QUOTED_IDENTIFIER ON
|
||
GO
|
||
IF NOT EXISTS (SELECT * FROM sys.views WHERE object_id = OBJECT_ID(N'[dbo].[RF Detector]'))
|
||
EXEC dbo.sp_executesql @statement = N'CREATE VIEW [dbo].[RF Detector]
|
||
AS
|
||
SELECT TOP (100) PERCENT PartId, Value, Comment, MfrPartNo AS [Part Number], Manufacturer, Description, Supplier1 AS [Supplier 1], Supplier1PartNo AS [Supplier Part Number 1], FootprintRef AS [Footprint Ref],
|
||
FootprintPath AS [Footprint Path], SymbolRef AS [Library Ref], SymbolPath AS [Library Path], ComponentLink1Description, ComponentLink1URL, ComponentLink2Description, ComponentLink2URL,
|
||
ComponentLink3Description, ComponentLink3URL, Supplier2 AS [Supplier 2], Supplier2PartNo AS [Supplier Part Number 2], FootprintRef2 AS [Footprint Ref 2], FootprintPath2 AS [Footprint Path 2],
|
||
FootprintRef3 AS [Footprint Ref 3], FootprintPath3 AS [Footprint Path 3], Price, Type, DevicePackage AS [Device Package], Frequency, InputRange AS [Input Range], Accuracy, Voltage AS [Voltage Supply],
|
||
CurrentSupply AS [Current Supply]
|
||
FROM dbo.Components
|
||
WHERE (ComponentType = ''RFIC'') AND (ComponentSubType = ''DET'')
|
||
'
|
||
GO
|
||
/****** Object: View [dbo].[RF Switch] Script Date: 2016-01-08 10:34:01 PM ******/
|
||
SET ANSI_NULLS ON
|
||
GO
|
||
SET QUOTED_IDENTIFIER ON
|
||
GO
|
||
IF NOT EXISTS (SELECT * FROM sys.views WHERE object_id = OBJECT_ID(N'[dbo].[RF Switch]'))
|
||
EXEC dbo.sp_executesql @statement = N'CREATE VIEW [dbo].[RF Switch]
|
||
AS
|
||
SELECT TOP (100) PERCENT PartId, Value, Comment, MfrPartNo AS [Part Number], Manufacturer, Description, Supplier1 AS [Supplier 1], Supplier1PartNo AS [Supplier Part Number 1], FootprintRef AS [Footprint Ref],
|
||
FootprintPath AS [Footprint Path], SymbolRef AS [Library Ref], SymbolPath AS [Library Path], ComponentLink1Description, ComponentLink1URL, ComponentLink2Description, ComponentLink2URL,
|
||
ComponentLink3Description, ComponentLink3URL, Supplier2 AS [Supplier 2], Supplier2PartNo AS [Supplier Part Number 2], FootprintRef2 AS [Footprint Ref 2], FootprintPath2 AS [Footprint Path 2],
|
||
FootprintRef3 AS [Footprint Ref 3], FootprintPath3 AS [Footprint Path 3], Price, Type, DevicePackage AS [Device Package], FrequencyLower AS [Frequency - Lower], FrequencyUpper AS [Frequency - Upper],
|
||
IsolationAtFrequency AS [Isolation @ Frequency], Circuit, InsertionLossAtFrequency AS [Insertion Loss @ Frequency], P1dB, Topology, IIP3, Voltage AS [Voltage - Supply],
|
||
TemperatureRange AS [Operating Temperature], Impedance
|
||
FROM dbo.Components
|
||
WHERE (ComponentType = ''RFIC'') AND (ComponentSubType = ''SW'')
|
||
'
|
||
GO
|
||
/****** Object: View [dbo].[Voltage Reference] Script Date: 2016-01-08 10:34:01 PM ******/
|
||
SET ANSI_NULLS ON
|
||
GO
|
||
SET QUOTED_IDENTIFIER ON
|
||
GO
|
||
IF NOT EXISTS (SELECT * FROM sys.views WHERE object_id = OBJECT_ID(N'[dbo].[Voltage Reference]'))
|
||
EXEC dbo.sp_executesql @statement = N'CREATE VIEW [dbo].[Voltage Reference]
|
||
AS
|
||
SELECT TOP (100) PERCENT PartId, Value, Comment, MfrPartNo AS [Part Number], Manufacturer, Description, Supplier1 AS [Supplier 1], Supplier1PartNo AS [Supplier Part Number 1], FootprintRef AS [Footprint Ref],
|
||
FootprintPath AS [Footprint Path], SymbolRef AS [Library Ref], SymbolPath AS [Library Path], ComponentLink1Description, ComponentLink1URL, ComponentLink2Description, ComponentLink2URL,
|
||
ComponentLink3Description, ComponentLink3URL, Supplier2 AS [Supplier 2], Supplier2PartNo AS [Supplier Part Number 2], FootprintRef2 AS [Footprint Ref 2], FootprintPath2 AS [Footprint Path 2],
|
||
FootprintRef3 AS [Footprint Ref 3], FootprintPath3 AS [Footprint Path 3], Price, Type, DevicePackage AS [Device Package], VoltageOutput AS [Voltage - Output (Min/Fixed)], CurrentOutput AS [Current - Output],
|
||
Tolerance, TemperatureCoefficient AS [Temperature Coefficient], VoltageInput AS [Voltage - Input], CurrentSupply AS [Current - Supply], TemperatureRange AS [Operating Temperature]
|
||
FROM dbo.Components
|
||
WHERE (ComponentType = ''VREF'')
|
||
'
|
||
GO
|
||
/****** Object: View [dbo].[Voltage Regulator - Linear] Script Date: 2016-01-08 10:34:01 PM ******/
|
||
SET ANSI_NULLS ON
|
||
GO
|
||
SET QUOTED_IDENTIFIER ON
|
||
GO
|
||
IF NOT EXISTS (SELECT * FROM sys.views WHERE object_id = OBJECT_ID(N'[dbo].[Voltage Regulator - Linear]'))
|
||
EXEC dbo.sp_executesql @statement = N'CREATE VIEW [dbo].[Voltage Regulator - Linear]
|
||
AS
|
||
SELECT TOP (100) PERCENT PartId, Value, Comment, MfrPartNo AS [Part Number], Manufacturer, Description, Supplier1 AS [Supplier 1], Supplier1PartNo AS [Supplier Part Number 1], FootprintRef AS [Footprint Ref],
|
||
FootprintPath AS [Footprint Path], SymbolRef AS [Library Ref], SymbolPath AS [Library Path], ComponentLink1Description, ComponentLink1URL, ComponentLink2Description, ComponentLink2URL,
|
||
ComponentLink3Description, ComponentLink3URL, Supplier2 AS [Supplier 2], Supplier2PartNo AS [Supplier Part Number 2], FootprintRef2 AS [Footprint Ref 2], FootprintPath2 AS [Footprint Path 2],
|
||
FootprintRef3 AS [Footprint Ref 3], FootprintPath3 AS [Footprint Path 3], Price, Type, DevicePackage AS [Device Package], Topology, VoltageOutput AS [Voltage - Output], CurrentOutput AS [Current Output],
|
||
VoltageDropout AS [Voltage Dropout], VoltageInput AS [Voltage - Input], CurrentRating AS [Current - Limit (Min)], TemperatureRange AS [Operating Temperature]
|
||
FROM dbo.Components
|
||
WHERE (ComponentType = ''VREG'') AND (ComponentSubType = ''LINEAR'')
|
||
'
|
||
GO
|
||
SET ANSI_PADDING ON
|
||
|
||
GO
|
||
/****** Object: Index [IX_ComponentSubType] Script Date: 2016-01-08 10:34:01 PM ******/
|
||
IF NOT EXISTS (SELECT * FROM sys.indexes WHERE object_id = OBJECT_ID(N'[dbo].[Components]') AND name = N'IX_ComponentSubType')
|
||
CREATE NONCLUSTERED INDEX [IX_ComponentSubType] ON [dbo].[Components]
|
||
(
|
||
[ComponentSubType] ASC
|
||
)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, SORT_IN_TEMPDB = OFF, DROP_EXISTING = OFF, ONLINE = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY]
|
||
GO
|
||
SET ANSI_PADDING ON
|
||
|
||
GO
|
||
/****** Object: Index [IX_ComponentType] Script Date: 2016-01-08 10:34:01 PM ******/
|
||
IF NOT EXISTS (SELECT * FROM sys.indexes WHERE object_id = OBJECT_ID(N'[dbo].[Components]') AND name = N'IX_ComponentType')
|
||
CREATE NONCLUSTERED INDEX [IX_ComponentType] ON [dbo].[Components]
|
||
(
|
||
[ComponentType] ASC
|
||
)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, SORT_IN_TEMPDB = OFF, DROP_EXISTING = OFF, ONLINE = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY]
|
||
GO
|
||
IF NOT EXISTS (SELECT * FROM ::fn_listextendedproperty(N'MS_DiagramPane1' , N'SCHEMA',N'dbo', N'VIEW',N'ADC - Programmable', NULL,NULL))
|
||
EXEC sys.sp_addextendedproperty @name=N'MS_DiagramPane1', @value=N'[0E232FF0-B466-11cf-A24F-00AA00A3EFFF, 1.00]
|
||
Begin DesignProperties =
|
||
Begin PaneConfigurations =
|
||
Begin PaneConfiguration = 0
|
||
NumPanes = 4
|
||
Configuration = "(H (1[40] 4[20] 2[20] 3) )"
|
||
End
|
||
Begin PaneConfiguration = 1
|
||
NumPanes = 3
|
||
Configuration = "(H (1 [50] 4 [25] 3))"
|
||
End
|
||
Begin PaneConfiguration = 2
|
||
NumPanes = 3
|
||
Configuration = "(H (1 [50] 2 [25] 3))"
|
||
End
|
||
Begin PaneConfiguration = 3
|
||
NumPanes = 3
|
||
Configuration = "(H (4 [30] 2 [40] 3))"
|
||
End
|
||
Begin PaneConfiguration = 4
|
||
NumPanes = 2
|
||
Configuration = "(H (1 [56] 3))"
|
||
End
|
||
Begin PaneConfiguration = 5
|
||
NumPanes = 2
|
||
Configuration = "(H (2 [66] 3))"
|
||
End
|
||
Begin PaneConfiguration = 6
|
||
NumPanes = 2
|
||
Configuration = "(H (4 [50] 3))"
|
||
End
|
||
Begin PaneConfiguration = 7
|
||
NumPanes = 1
|
||
Configuration = "(V (3))"
|
||
End
|
||
Begin PaneConfiguration = 8
|
||
NumPanes = 3
|
||
Configuration = "(H (1[56] 4[18] 2) )"
|
||
End
|
||
Begin PaneConfiguration = 9
|
||
NumPanes = 2
|
||
Configuration = "(H (1 [75] 4))"
|
||
End
|
||
Begin PaneConfiguration = 10
|
||
NumPanes = 2
|
||
Configuration = "(H (1[66] 2) )"
|
||
End
|
||
Begin PaneConfiguration = 11
|
||
NumPanes = 2
|
||
Configuration = "(H (4 [60] 2))"
|
||
End
|
||
Begin PaneConfiguration = 12
|
||
NumPanes = 1
|
||
Configuration = "(H (1) )"
|
||
End
|
||
Begin PaneConfiguration = 13
|
||
NumPanes = 1
|
||
Configuration = "(V (4))"
|
||
End
|
||
Begin PaneConfiguration = 14
|
||
NumPanes = 1
|
||
Configuration = "(V (2))"
|
||
End
|
||
ActivePaneConfig = 0
|
||
End
|
||
Begin DiagramPane =
|
||
Begin Origin =
|
||
Top = 0
|
||
Left = 0
|
||
End
|
||
Begin Tables =
|
||
Begin Table = "Components"
|
||
Begin Extent =
|
||
Top = 6
|
||
Left = 38
|
||
Bottom = 136
|
||
Right = 279
|
||
End
|
||
DisplayFlags = 280
|
||
TopColumn = 0
|
||
End
|
||
End
|
||
End
|
||
Begin SQLPane =
|
||
End
|
||
Begin DataPane =
|
||
Begin ParameterDefaults = ""
|
||
End
|
||
End
|
||
Begin CriteriaPane =
|
||
Begin ColumnWidths = 11
|
||
Column = 1440
|
||
Alias = 900
|
||
Table = 1170
|
||
Output = 720
|
||
Append = 1400
|
||
NewValue = 1170
|
||
SortType = 1350
|
||
SortOrder = 1410
|
||
GroupBy = 1350
|
||
Filter = 1350
|
||
Or = 1350
|
||
Or = 1350
|
||
Or = 1350
|
||
End
|
||
End
|
||
End
|
||
' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'VIEW',@level1name=N'ADC - Programmable'
|
||
GO
|
||
IF NOT EXISTS (SELECT * FROM ::fn_listextendedproperty(N'MS_DiagramPaneCount' , N'SCHEMA',N'dbo', N'VIEW',N'ADC - Programmable', NULL,NULL))
|
||
EXEC sys.sp_addextendedproperty @name=N'MS_DiagramPaneCount', @value=1 , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'VIEW',@level1name=N'ADC - Programmable'
|
||
GO
|
||
IF NOT EXISTS (SELECT * FROM ::fn_listextendedproperty(N'MS_DiagramPane1' , N'SCHEMA',N'dbo', N'VIEW',N'Button - Tactile', NULL,NULL))
|
||
EXEC sys.sp_addextendedproperty @name=N'MS_DiagramPane1', @value=N'[0E232FF0-B466-11cf-A24F-00AA00A3EFFF, 1.00]
|
||
Begin DesignProperties =
|
||
Begin PaneConfigurations =
|
||
Begin PaneConfiguration = 0
|
||
NumPanes = 4
|
||
Configuration = "(H (1[40] 4[20] 2[20] 3) )"
|
||
End
|
||
Begin PaneConfiguration = 1
|
||
NumPanes = 3
|
||
Configuration = "(H (1 [50] 4 [25] 3))"
|
||
End
|
||
Begin PaneConfiguration = 2
|
||
NumPanes = 3
|
||
Configuration = "(H (1 [50] 2 [25] 3))"
|
||
End
|
||
Begin PaneConfiguration = 3
|
||
NumPanes = 3
|
||
Configuration = "(H (4 [30] 2 [40] 3))"
|
||
End
|
||
Begin PaneConfiguration = 4
|
||
NumPanes = 2
|
||
Configuration = "(H (1 [56] 3))"
|
||
End
|
||
Begin PaneConfiguration = 5
|
||
NumPanes = 2
|
||
Configuration = "(H (2 [66] 3))"
|
||
End
|
||
Begin PaneConfiguration = 6
|
||
NumPanes = 2
|
||
Configuration = "(H (4 [50] 3))"
|
||
End
|
||
Begin PaneConfiguration = 7
|
||
NumPanes = 1
|
||
Configuration = "(V (3))"
|
||
End
|
||
Begin PaneConfiguration = 8
|
||
NumPanes = 3
|
||
Configuration = "(H (1[56] 4[18] 2) )"
|
||
End
|
||
Begin PaneConfiguration = 9
|
||
NumPanes = 2
|
||
Configuration = "(H (1 [75] 4))"
|
||
End
|
||
Begin PaneConfiguration = 10
|
||
NumPanes = 2
|
||
Configuration = "(H (1[66] 2) )"
|
||
End
|
||
Begin PaneConfiguration = 11
|
||
NumPanes = 2
|
||
Configuration = "(H (4 [60] 2))"
|
||
End
|
||
Begin PaneConfiguration = 12
|
||
NumPanes = 1
|
||
Configuration = "(H (1) )"
|
||
End
|
||
Begin PaneConfiguration = 13
|
||
NumPanes = 1
|
||
Configuration = "(V (4))"
|
||
End
|
||
Begin PaneConfiguration = 14
|
||
NumPanes = 1
|
||
Configuration = "(V (2))"
|
||
End
|
||
ActivePaneConfig = 0
|
||
End
|
||
Begin DiagramPane =
|
||
Begin Origin =
|
||
Top = 0
|
||
Left = 0
|
||
End
|
||
Begin Tables =
|
||
Begin Table = "Components"
|
||
Begin Extent =
|
||
Top = 6
|
||
Left = 38
|
||
Bottom = 136
|
||
Right = 279
|
||
End
|
||
DisplayFlags = 280
|
||
TopColumn = 0
|
||
End
|
||
End
|
||
End
|
||
Begin SQLPane =
|
||
End
|
||
Begin DataPane =
|
||
Begin ParameterDefaults = ""
|
||
End
|
||
End
|
||
Begin CriteriaPane =
|
||
Begin ColumnWidths = 11
|
||
Column = 1440
|
||
Alias = 900
|
||
Table = 1170
|
||
Output = 720
|
||
Append = 1400
|
||
NewValue = 1170
|
||
SortType = 1350
|
||
SortOrder = 1410
|
||
GroupBy = 1350
|
||
Filter = 1350
|
||
Or = 1350
|
||
Or = 1350
|
||
Or = 1350
|
||
End
|
||
End
|
||
End
|
||
' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'VIEW',@level1name=N'Button - Tactile'
|
||
GO
|
||
IF NOT EXISTS (SELECT * FROM ::fn_listextendedproperty(N'MS_DiagramPaneCount' , N'SCHEMA',N'dbo', N'VIEW',N'Button - Tactile', NULL,NULL))
|
||
EXEC sys.sp_addextendedproperty @name=N'MS_DiagramPaneCount', @value=1 , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'VIEW',@level1name=N'Button - Tactile'
|
||
GO
|
||
IF NOT EXISTS (SELECT * FROM ::fn_listextendedproperty(N'MS_DiagramPane1' , N'SCHEMA',N'dbo', N'VIEW',N'Capacitor Aluminium', NULL,NULL))
|
||
EXEC sys.sp_addextendedproperty @name=N'MS_DiagramPane1', @value=N'[0E232FF0-B466-11cf-A24F-00AA00A3EFFF, 1.00]
|
||
Begin DesignProperties =
|
||
Begin PaneConfigurations =
|
||
Begin PaneConfiguration = 0
|
||
NumPanes = 4
|
||
Configuration = "(H (1[40] 4[20] 2[20] 3) )"
|
||
End
|
||
Begin PaneConfiguration = 1
|
||
NumPanes = 3
|
||
Configuration = "(H (1 [50] 4 [25] 3))"
|
||
End
|
||
Begin PaneConfiguration = 2
|
||
NumPanes = 3
|
||
Configuration = "(H (1 [50] 2 [25] 3))"
|
||
End
|
||
Begin PaneConfiguration = 3
|
||
NumPanes = 3
|
||
Configuration = "(H (4 [30] 2 [40] 3))"
|
||
End
|
||
Begin PaneConfiguration = 4
|
||
NumPanes = 2
|
||
Configuration = "(H (1 [56] 3))"
|
||
End
|
||
Begin PaneConfiguration = 5
|
||
NumPanes = 2
|
||
Configuration = "(H (2 [66] 3))"
|
||
End
|
||
Begin PaneConfiguration = 6
|
||
NumPanes = 2
|
||
Configuration = "(H (4 [50] 3))"
|
||
End
|
||
Begin PaneConfiguration = 7
|
||
NumPanes = 1
|
||
Configuration = "(V (3))"
|
||
End
|
||
Begin PaneConfiguration = 8
|
||
NumPanes = 3
|
||
Configuration = "(H (1[56] 4[18] 2) )"
|
||
End
|
||
Begin PaneConfiguration = 9
|
||
NumPanes = 2
|
||
Configuration = "(H (1 [75] 4))"
|
||
End
|
||
Begin PaneConfiguration = 10
|
||
NumPanes = 2
|
||
Configuration = "(H (1[66] 2) )"
|
||
End
|
||
Begin PaneConfiguration = 11
|
||
NumPanes = 2
|
||
Configuration = "(H (4 [60] 2))"
|
||
End
|
||
Begin PaneConfiguration = 12
|
||
NumPanes = 1
|
||
Configuration = "(H (1) )"
|
||
End
|
||
Begin PaneConfiguration = 13
|
||
NumPanes = 1
|
||
Configuration = "(V (4))"
|
||
End
|
||
Begin PaneConfiguration = 14
|
||
NumPanes = 1
|
||
Configuration = "(V (2))"
|
||
End
|
||
ActivePaneConfig = 0
|
||
End
|
||
Begin DiagramPane =
|
||
Begin Origin =
|
||
Top = 0
|
||
Left = 0
|
||
End
|
||
Begin Tables =
|
||
Begin Table = "Components"
|
||
Begin Extent =
|
||
Top = 6
|
||
Left = 38
|
||
Bottom = 358
|
||
Right = 448
|
||
End
|
||
DisplayFlags = 280
|
||
TopColumn = 40
|
||
End
|
||
End
|
||
End
|
||
Begin SQLPane =
|
||
End
|
||
Begin DataPane =
|
||
Begin ParameterDefaults = ""
|
||
End
|
||
End
|
||
Begin CriteriaPane =
|
||
Begin ColumnWidths = 11
|
||
Column = 1440
|
||
Alias = 900
|
||
Table = 1170
|
||
Output = 720
|
||
Append = 1400
|
||
NewValue = 1170
|
||
SortType = 1350
|
||
SortOrder = 1410
|
||
GroupBy = 1350
|
||
Filter = 1350
|
||
Or = 1350
|
||
Or = 1350
|
||
Or = 1350
|
||
End
|
||
End
|
||
End
|
||
' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'VIEW',@level1name=N'Capacitor Aluminium'
|
||
GO
|
||
IF NOT EXISTS (SELECT * FROM ::fn_listextendedproperty(N'MS_DiagramPaneCount' , N'SCHEMA',N'dbo', N'VIEW',N'Capacitor Aluminium', NULL,NULL))
|
||
EXEC sys.sp_addextendedproperty @name=N'MS_DiagramPaneCount', @value=1 , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'VIEW',@level1name=N'Capacitor Aluminium'
|
||
GO
|
||
IF NOT EXISTS (SELECT * FROM ::fn_listextendedproperty(N'MS_DiagramPane1' , N'SCHEMA',N'dbo', N'VIEW',N'Capacitor Aluminium Polymer', NULL,NULL))
|
||
EXEC sys.sp_addextendedproperty @name=N'MS_DiagramPane1', @value=N'[0E232FF0-B466-11cf-A24F-00AA00A3EFFF, 1.00]
|
||
Begin DesignProperties =
|
||
Begin PaneConfigurations =
|
||
Begin PaneConfiguration = 0
|
||
NumPanes = 4
|
||
Configuration = "(H (1[40] 4[20] 2[20] 3) )"
|
||
End
|
||
Begin PaneConfiguration = 1
|
||
NumPanes = 3
|
||
Configuration = "(H (1 [50] 4 [25] 3))"
|
||
End
|
||
Begin PaneConfiguration = 2
|
||
NumPanes = 3
|
||
Configuration = "(H (1 [50] 2 [25] 3))"
|
||
End
|
||
Begin PaneConfiguration = 3
|
||
NumPanes = 3
|
||
Configuration = "(H (4 [30] 2 [40] 3))"
|
||
End
|
||
Begin PaneConfiguration = 4
|
||
NumPanes = 2
|
||
Configuration = "(H (1 [56] 3))"
|
||
End
|
||
Begin PaneConfiguration = 5
|
||
NumPanes = 2
|
||
Configuration = "(H (2 [66] 3))"
|
||
End
|
||
Begin PaneConfiguration = 6
|
||
NumPanes = 2
|
||
Configuration = "(H (4 [50] 3))"
|
||
End
|
||
Begin PaneConfiguration = 7
|
||
NumPanes = 1
|
||
Configuration = "(V (3))"
|
||
End
|
||
Begin PaneConfiguration = 8
|
||
NumPanes = 3
|
||
Configuration = "(H (1[56] 4[18] 2) )"
|
||
End
|
||
Begin PaneConfiguration = 9
|
||
NumPanes = 2
|
||
Configuration = "(H (1 [75] 4))"
|
||
End
|
||
Begin PaneConfiguration = 10
|
||
NumPanes = 2
|
||
Configuration = "(H (1[66] 2) )"
|
||
End
|
||
Begin PaneConfiguration = 11
|
||
NumPanes = 2
|
||
Configuration = "(H (4 [60] 2))"
|
||
End
|
||
Begin PaneConfiguration = 12
|
||
NumPanes = 1
|
||
Configuration = "(H (1) )"
|
||
End
|
||
Begin PaneConfiguration = 13
|
||
NumPanes = 1
|
||
Configuration = "(V (4))"
|
||
End
|
||
Begin PaneConfiguration = 14
|
||
NumPanes = 1
|
||
Configuration = "(V (2))"
|
||
End
|
||
ActivePaneConfig = 0
|
||
End
|
||
Begin DiagramPane =
|
||
Begin Origin =
|
||
Top = 0
|
||
Left = 0
|
||
End
|
||
Begin Tables =
|
||
Begin Table = "Components"
|
||
Begin Extent =
|
||
Top = 6
|
||
Left = 38
|
||
Bottom = 136
|
||
Right = 279
|
||
End
|
||
DisplayFlags = 280
|
||
TopColumn = 0
|
||
End
|
||
End
|
||
End
|
||
Begin SQLPane =
|
||
End
|
||
Begin DataPane =
|
||
Begin ParameterDefaults = ""
|
||
End
|
||
End
|
||
Begin CriteriaPane =
|
||
Begin ColumnWidths = 11
|
||
Column = 1440
|
||
Alias = 900
|
||
Table = 1170
|
||
Output = 720
|
||
Append = 1400
|
||
NewValue = 1170
|
||
SortType = 1350
|
||
SortOrder = 1410
|
||
GroupBy = 1350
|
||
Filter = 1350
|
||
Or = 1350
|
||
Or = 1350
|
||
Or = 1350
|
||
End
|
||
End
|
||
End
|
||
' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'VIEW',@level1name=N'Capacitor Aluminium Polymer'
|
||
GO
|
||
IF NOT EXISTS (SELECT * FROM ::fn_listextendedproperty(N'MS_DiagramPaneCount' , N'SCHEMA',N'dbo', N'VIEW',N'Capacitor Aluminium Polymer', NULL,NULL))
|
||
EXEC sys.sp_addextendedproperty @name=N'MS_DiagramPaneCount', @value=1 , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'VIEW',@level1name=N'Capacitor Aluminium Polymer'
|
||
GO
|
||
IF NOT EXISTS (SELECT * FROM ::fn_listextendedproperty(N'MS_DiagramPane1' , N'SCHEMA',N'dbo', N'VIEW',N'Capacitor Ceramic', NULL,NULL))
|
||
EXEC sys.sp_addextendedproperty @name=N'MS_DiagramPane1', @value=N'[0E232FF0-B466-11cf-A24F-00AA00A3EFFF, 1.00]
|
||
Begin DesignProperties =
|
||
Begin PaneConfigurations =
|
||
Begin PaneConfiguration = 0
|
||
NumPanes = 4
|
||
Configuration = "(H (1[40] 4[20] 2[20] 3) )"
|
||
End
|
||
Begin PaneConfiguration = 1
|
||
NumPanes = 3
|
||
Configuration = "(H (1 [50] 4 [25] 3))"
|
||
End
|
||
Begin PaneConfiguration = 2
|
||
NumPanes = 3
|
||
Configuration = "(H (1 [50] 2 [25] 3))"
|
||
End
|
||
Begin PaneConfiguration = 3
|
||
NumPanes = 3
|
||
Configuration = "(H (4 [30] 2 [40] 3))"
|
||
End
|
||
Begin PaneConfiguration = 4
|
||
NumPanes = 2
|
||
Configuration = "(H (1 [56] 3))"
|
||
End
|
||
Begin PaneConfiguration = 5
|
||
NumPanes = 2
|
||
Configuration = "(H (2 [66] 3))"
|
||
End
|
||
Begin PaneConfiguration = 6
|
||
NumPanes = 2
|
||
Configuration = "(H (4 [50] 3))"
|
||
End
|
||
Begin PaneConfiguration = 7
|
||
NumPanes = 1
|
||
Configuration = "(V (3))"
|
||
End
|
||
Begin PaneConfiguration = 8
|
||
NumPanes = 3
|
||
Configuration = "(H (1[56] 4[18] 2) )"
|
||
End
|
||
Begin PaneConfiguration = 9
|
||
NumPanes = 2
|
||
Configuration = "(H (1 [75] 4))"
|
||
End
|
||
Begin PaneConfiguration = 10
|
||
NumPanes = 2
|
||
Configuration = "(H (1[66] 2) )"
|
||
End
|
||
Begin PaneConfiguration = 11
|
||
NumPanes = 2
|
||
Configuration = "(H (4 [60] 2))"
|
||
End
|
||
Begin PaneConfiguration = 12
|
||
NumPanes = 1
|
||
Configuration = "(H (1) )"
|
||
End
|
||
Begin PaneConfiguration = 13
|
||
NumPanes = 1
|
||
Configuration = "(V (4))"
|
||
End
|
||
Begin PaneConfiguration = 14
|
||
NumPanes = 1
|
||
Configuration = "(V (2))"
|
||
End
|
||
ActivePaneConfig = 0
|
||
End
|
||
Begin DiagramPane =
|
||
Begin Origin =
|
||
Top = 0
|
||
Left = 0
|
||
End
|
||
Begin Tables =
|
||
Begin Table = "Components"
|
||
Begin Extent =
|
||
Top = 6
|
||
Left = 38
|
||
Bottom = 338
|
||
Right = 598
|
||
End
|
||
DisplayFlags = 280
|
||
TopColumn = 0
|
||
End
|
||
End
|
||
End
|
||
Begin SQLPane =
|
||
End
|
||
Begin DataPane =
|
||
Begin ParameterDefaults = ""
|
||
End
|
||
End
|
||
Begin CriteriaPane =
|
||
Begin ColumnWidths = 11
|
||
Column = 1995
|
||
Alias = 2820
|
||
Table = 1170
|
||
Output = 720
|
||
Append = 1400
|
||
NewValue = 1170
|
||
SortType = 1350
|
||
SortOrder = 1410
|
||
GroupBy = 1350
|
||
Filter = 1350
|
||
Or = 1350
|
||
Or = 1350
|
||
Or = 1350
|
||
End
|
||
End
|
||
End
|
||
' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'VIEW',@level1name=N'Capacitor Ceramic'
|
||
GO
|
||
IF NOT EXISTS (SELECT * FROM ::fn_listextendedproperty(N'MS_DiagramPaneCount' , N'SCHEMA',N'dbo', N'VIEW',N'Capacitor Ceramic', NULL,NULL))
|
||
EXEC sys.sp_addextendedproperty @name=N'MS_DiagramPaneCount', @value=1 , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'VIEW',@level1name=N'Capacitor Ceramic'
|
||
GO
|
||
IF NOT EXISTS (SELECT * FROM ::fn_listextendedproperty(N'MS_DiagramPane1' , N'SCHEMA',N'dbo', N'VIEW',N'Capacitor RF', NULL,NULL))
|
||
EXEC sys.sp_addextendedproperty @name=N'MS_DiagramPane1', @value=N'[0E232FF0-B466-11cf-A24F-00AA00A3EFFF, 1.00]
|
||
Begin DesignProperties =
|
||
Begin PaneConfigurations =
|
||
Begin PaneConfiguration = 0
|
||
NumPanes = 4
|
||
Configuration = "(H (1[40] 4[20] 2[20] 3) )"
|
||
End
|
||
Begin PaneConfiguration = 1
|
||
NumPanes = 3
|
||
Configuration = "(H (1 [50] 4 [25] 3))"
|
||
End
|
||
Begin PaneConfiguration = 2
|
||
NumPanes = 3
|
||
Configuration = "(H (1 [50] 2 [25] 3))"
|
||
End
|
||
Begin PaneConfiguration = 3
|
||
NumPanes = 3
|
||
Configuration = "(H (4 [30] 2 [40] 3))"
|
||
End
|
||
Begin PaneConfiguration = 4
|
||
NumPanes = 2
|
||
Configuration = "(H (1 [56] 3))"
|
||
End
|
||
Begin PaneConfiguration = 5
|
||
NumPanes = 2
|
||
Configuration = "(H (2 [66] 3))"
|
||
End
|
||
Begin PaneConfiguration = 6
|
||
NumPanes = 2
|
||
Configuration = "(H (4 [50] 3))"
|
||
End
|
||
Begin PaneConfiguration = 7
|
||
NumPanes = 1
|
||
Configuration = "(V (3))"
|
||
End
|
||
Begin PaneConfiguration = 8
|
||
NumPanes = 3
|
||
Configuration = "(H (1[56] 4[18] 2) )"
|
||
End
|
||
Begin PaneConfiguration = 9
|
||
NumPanes = 2
|
||
Configuration = "(H (1 [75] 4))"
|
||
End
|
||
Begin PaneConfiguration = 10
|
||
NumPanes = 2
|
||
Configuration = "(H (1[66] 2) )"
|
||
End
|
||
Begin PaneConfiguration = 11
|
||
NumPanes = 2
|
||
Configuration = "(H (4 [60] 2))"
|
||
End
|
||
Begin PaneConfiguration = 12
|
||
NumPanes = 1
|
||
Configuration = "(H (1) )"
|
||
End
|
||
Begin PaneConfiguration = 13
|
||
NumPanes = 1
|
||
Configuration = "(V (4))"
|
||
End
|
||
Begin PaneConfiguration = 14
|
||
NumPanes = 1
|
||
Configuration = "(V (2))"
|
||
End
|
||
ActivePaneConfig = 0
|
||
End
|
||
Begin DiagramPane =
|
||
Begin Origin =
|
||
Top = 0
|
||
Left = 0
|
||
End
|
||
Begin Tables =
|
||
Begin Table = "Components"
|
||
Begin Extent =
|
||
Top = 6
|
||
Left = 38
|
||
Bottom = 136
|
||
Right = 279
|
||
End
|
||
DisplayFlags = 280
|
||
TopColumn = 0
|
||
End
|
||
End
|
||
End
|
||
Begin SQLPane =
|
||
End
|
||
Begin DataPane =
|
||
Begin ParameterDefaults = ""
|
||
End
|
||
End
|
||
Begin CriteriaPane =
|
||
Begin ColumnWidths = 11
|
||
Column = 1440
|
||
Alias = 900
|
||
Table = 1170
|
||
Output = 720
|
||
Append = 1400
|
||
NewValue = 1170
|
||
SortType = 1350
|
||
SortOrder = 1410
|
||
GroupBy = 1350
|
||
Filter = 1350
|
||
Or = 1350
|
||
Or = 1350
|
||
Or = 1350
|
||
End
|
||
End
|
||
End
|
||
' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'VIEW',@level1name=N'Capacitor RF'
|
||
GO
|
||
IF NOT EXISTS (SELECT * FROM ::fn_listextendedproperty(N'MS_DiagramPaneCount' , N'SCHEMA',N'dbo', N'VIEW',N'Capacitor RF', NULL,NULL))
|
||
EXEC sys.sp_addextendedproperty @name=N'MS_DiagramPaneCount', @value=1 , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'VIEW',@level1name=N'Capacitor RF'
|
||
GO
|
||
IF NOT EXISTS (SELECT * FROM ::fn_listextendedproperty(N'MS_DiagramPane1' , N'SCHEMA',N'dbo', N'VIEW',N'Capacitor Tantalum', NULL,NULL))
|
||
EXEC sys.sp_addextendedproperty @name=N'MS_DiagramPane1', @value=N'[0E232FF0-B466-11cf-A24F-00AA00A3EFFF, 1.00]
|
||
Begin DesignProperties =
|
||
Begin PaneConfigurations =
|
||
Begin PaneConfiguration = 0
|
||
NumPanes = 4
|
||
Configuration = "(H (1[40] 4[20] 2[20] 3) )"
|
||
End
|
||
Begin PaneConfiguration = 1
|
||
NumPanes = 3
|
||
Configuration = "(H (1 [50] 4 [25] 3))"
|
||
End
|
||
Begin PaneConfiguration = 2
|
||
NumPanes = 3
|
||
Configuration = "(H (1 [50] 2 [25] 3))"
|
||
End
|
||
Begin PaneConfiguration = 3
|
||
NumPanes = 3
|
||
Configuration = "(H (4 [30] 2 [40] 3))"
|
||
End
|
||
Begin PaneConfiguration = 4
|
||
NumPanes = 2
|
||
Configuration = "(H (1 [56] 3))"
|
||
End
|
||
Begin PaneConfiguration = 5
|
||
NumPanes = 2
|
||
Configuration = "(H (2 [66] 3))"
|
||
End
|
||
Begin PaneConfiguration = 6
|
||
NumPanes = 2
|
||
Configuration = "(H (4 [50] 3))"
|
||
End
|
||
Begin PaneConfiguration = 7
|
||
NumPanes = 1
|
||
Configuration = "(V (3))"
|
||
End
|
||
Begin PaneConfiguration = 8
|
||
NumPanes = 3
|
||
Configuration = "(H (1[56] 4[18] 2) )"
|
||
End
|
||
Begin PaneConfiguration = 9
|
||
NumPanes = 2
|
||
Configuration = "(H (1 [75] 4))"
|
||
End
|
||
Begin PaneConfiguration = 10
|
||
NumPanes = 2
|
||
Configuration = "(H (1[66] 2) )"
|
||
End
|
||
Begin PaneConfiguration = 11
|
||
NumPanes = 2
|
||
Configuration = "(H (4 [60] 2))"
|
||
End
|
||
Begin PaneConfiguration = 12
|
||
NumPanes = 1
|
||
Configuration = "(H (1) )"
|
||
End
|
||
Begin PaneConfiguration = 13
|
||
NumPanes = 1
|
||
Configuration = "(V (4))"
|
||
End
|
||
Begin PaneConfiguration = 14
|
||
NumPanes = 1
|
||
Configuration = "(V (2))"
|
||
End
|
||
ActivePaneConfig = 0
|
||
End
|
||
Begin DiagramPane =
|
||
Begin Origin =
|
||
Top = 0
|
||
Left = 0
|
||
End
|
||
Begin Tables =
|
||
Begin Table = "Components"
|
||
Begin Extent =
|
||
Top = 6
|
||
Left = 38
|
||
Bottom = 136
|
||
Right = 279
|
||
End
|
||
DisplayFlags = 280
|
||
TopColumn = 0
|
||
End
|
||
End
|
||
End
|
||
Begin SQLPane =
|
||
End
|
||
Begin DataPane =
|
||
Begin ParameterDefaults = ""
|
||
End
|
||
End
|
||
Begin CriteriaPane =
|
||
Begin ColumnWidths = 11
|
||
Column = 1440
|
||
Alias = 900
|
||
Table = 1170
|
||
Output = 720
|
||
Append = 1400
|
||
NewValue = 1170
|
||
SortType = 1350
|
||
SortOrder = 1410
|
||
GroupBy = 1350
|
||
Filter = 1350
|
||
Or = 1350
|
||
Or = 1350
|
||
Or = 1350
|
||
End
|
||
End
|
||
End
|
||
' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'VIEW',@level1name=N'Capacitor Tantalum'
|
||
GO
|
||
IF NOT EXISTS (SELECT * FROM ::fn_listextendedproperty(N'MS_DiagramPaneCount' , N'SCHEMA',N'dbo', N'VIEW',N'Capacitor Tantalum', NULL,NULL))
|
||
EXEC sys.sp_addextendedproperty @name=N'MS_DiagramPaneCount', @value=1 , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'VIEW',@level1name=N'Capacitor Tantalum'
|
||
GO
|
||
IF NOT EXISTS (SELECT * FROM ::fn_listextendedproperty(N'MS_DiagramPane1' , N'SCHEMA',N'dbo', N'VIEW',N'Capacitor Tantalum Polymer', NULL,NULL))
|
||
EXEC sys.sp_addextendedproperty @name=N'MS_DiagramPane1', @value=N'[0E232FF0-B466-11cf-A24F-00AA00A3EFFF, 1.00]
|
||
Begin DesignProperties =
|
||
Begin PaneConfigurations =
|
||
Begin PaneConfiguration = 0
|
||
NumPanes = 4
|
||
Configuration = "(H (1[40] 4[20] 2[20] 3) )"
|
||
End
|
||
Begin PaneConfiguration = 1
|
||
NumPanes = 3
|
||
Configuration = "(H (1 [50] 4 [25] 3))"
|
||
End
|
||
Begin PaneConfiguration = 2
|
||
NumPanes = 3
|
||
Configuration = "(H (1 [50] 2 [25] 3))"
|
||
End
|
||
Begin PaneConfiguration = 3
|
||
NumPanes = 3
|
||
Configuration = "(H (4 [30] 2 [40] 3))"
|
||
End
|
||
Begin PaneConfiguration = 4
|
||
NumPanes = 2
|
||
Configuration = "(H (1 [56] 3))"
|
||
End
|
||
Begin PaneConfiguration = 5
|
||
NumPanes = 2
|
||
Configuration = "(H (2 [66] 3))"
|
||
End
|
||
Begin PaneConfiguration = 6
|
||
NumPanes = 2
|
||
Configuration = "(H (4 [50] 3))"
|
||
End
|
||
Begin PaneConfiguration = 7
|
||
NumPanes = 1
|
||
Configuration = "(V (3))"
|
||
End
|
||
Begin PaneConfiguration = 8
|
||
NumPanes = 3
|
||
Configuration = "(H (1[56] 4[18] 2) )"
|
||
End
|
||
Begin PaneConfiguration = 9
|
||
NumPanes = 2
|
||
Configuration = "(H (1 [75] 4))"
|
||
End
|
||
Begin PaneConfiguration = 10
|
||
NumPanes = 2
|
||
Configuration = "(H (1[66] 2) )"
|
||
End
|
||
Begin PaneConfiguration = 11
|
||
NumPanes = 2
|
||
Configuration = "(H (4 [60] 2))"
|
||
End
|
||
Begin PaneConfiguration = 12
|
||
NumPanes = 1
|
||
Configuration = "(H (1) )"
|
||
End
|
||
Begin PaneConfiguration = 13
|
||
NumPanes = 1
|
||
Configuration = "(V (4))"
|
||
End
|
||
Begin PaneConfiguration = 14
|
||
NumPanes = 1
|
||
Configuration = "(V (2))"
|
||
End
|
||
ActivePaneConfig = 0
|
||
End
|
||
Begin DiagramPane =
|
||
Begin Origin =
|
||
Top = 0
|
||
Left = 0
|
||
End
|
||
Begin Tables =
|
||
Begin Table = "Components"
|
||
Begin Extent =
|
||
Top = 6
|
||
Left = 38
|
||
Bottom = 136
|
||
Right = 279
|
||
End
|
||
DisplayFlags = 280
|
||
TopColumn = 0
|
||
End
|
||
End
|
||
End
|
||
Begin SQLPane =
|
||
End
|
||
Begin DataPane =
|
||
Begin ParameterDefaults = ""
|
||
End
|
||
End
|
||
Begin CriteriaPane =
|
||
Begin ColumnWidths = 11
|
||
Column = 1440
|
||
Alias = 900
|
||
Table = 1170
|
||
Output = 720
|
||
Append = 1400
|
||
NewValue = 1170
|
||
SortType = 1350
|
||
SortOrder = 1410
|
||
GroupBy = 1350
|
||
Filter = 1350
|
||
Or = 1350
|
||
Or = 1350
|
||
Or = 1350
|
||
End
|
||
End
|
||
End
|
||
' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'VIEW',@level1name=N'Capacitor Tantalum Polymer'
|
||
GO
|
||
IF NOT EXISTS (SELECT * FROM ::fn_listextendedproperty(N'MS_DiagramPaneCount' , N'SCHEMA',N'dbo', N'VIEW',N'Capacitor Tantalum Polymer', NULL,NULL))
|
||
EXEC sys.sp_addextendedproperty @name=N'MS_DiagramPaneCount', @value=1 , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'VIEW',@level1name=N'Capacitor Tantalum Polymer'
|
||
GO
|
||
IF NOT EXISTS (SELECT * FROM ::fn_listextendedproperty(N'MS_DiagramPane1' , N'SCHEMA',N'dbo', N'VIEW',N'Chip LED', NULL,NULL))
|
||
EXEC sys.sp_addextendedproperty @name=N'MS_DiagramPane1', @value=N'[0E232FF0-B466-11cf-A24F-00AA00A3EFFF, 1.00]
|
||
Begin DesignProperties =
|
||
Begin PaneConfigurations =
|
||
Begin PaneConfiguration = 0
|
||
NumPanes = 4
|
||
Configuration = "(H (1[40] 4[20] 2[20] 3) )"
|
||
End
|
||
Begin PaneConfiguration = 1
|
||
NumPanes = 3
|
||
Configuration = "(H (1 [50] 4 [25] 3))"
|
||
End
|
||
Begin PaneConfiguration = 2
|
||
NumPanes = 3
|
||
Configuration = "(H (1 [50] 2 [25] 3))"
|
||
End
|
||
Begin PaneConfiguration = 3
|
||
NumPanes = 3
|
||
Configuration = "(H (4 [30] 2 [40] 3))"
|
||
End
|
||
Begin PaneConfiguration = 4
|
||
NumPanes = 2
|
||
Configuration = "(H (1 [56] 3))"
|
||
End
|
||
Begin PaneConfiguration = 5
|
||
NumPanes = 2
|
||
Configuration = "(H (2 [66] 3))"
|
||
End
|
||
Begin PaneConfiguration = 6
|
||
NumPanes = 2
|
||
Configuration = "(H (4 [50] 3))"
|
||
End
|
||
Begin PaneConfiguration = 7
|
||
NumPanes = 1
|
||
Configuration = "(V (3))"
|
||
End
|
||
Begin PaneConfiguration = 8
|
||
NumPanes = 3
|
||
Configuration = "(H (1[56] 4[18] 2) )"
|
||
End
|
||
Begin PaneConfiguration = 9
|
||
NumPanes = 2
|
||
Configuration = "(H (1 [75] 4))"
|
||
End
|
||
Begin PaneConfiguration = 10
|
||
NumPanes = 2
|
||
Configuration = "(H (1[66] 2) )"
|
||
End
|
||
Begin PaneConfiguration = 11
|
||
NumPanes = 2
|
||
Configuration = "(H (4 [60] 2))"
|
||
End
|
||
Begin PaneConfiguration = 12
|
||
NumPanes = 1
|
||
Configuration = "(H (1) )"
|
||
End
|
||
Begin PaneConfiguration = 13
|
||
NumPanes = 1
|
||
Configuration = "(V (4))"
|
||
End
|
||
Begin PaneConfiguration = 14
|
||
NumPanes = 1
|
||
Configuration = "(V (2))"
|
||
End
|
||
ActivePaneConfig = 0
|
||
End
|
||
Begin DiagramPane =
|
||
Begin Origin =
|
||
Top = 0
|
||
Left = 0
|
||
End
|
||
Begin Tables =
|
||
Begin Table = "Components"
|
||
Begin Extent =
|
||
Top = 6
|
||
Left = 38
|
||
Bottom = 353
|
||
Right = 412
|
||
End
|
||
DisplayFlags = 280
|
||
TopColumn = 0
|
||
End
|
||
End
|
||
End
|
||
Begin SQLPane =
|
||
End
|
||
Begin DataPane =
|
||
Begin ParameterDefaults = ""
|
||
End
|
||
End
|
||
Begin CriteriaPane =
|
||
Begin ColumnWidths = 11
|
||
Column = 1440
|
||
Alias = 3090
|
||
Table = 1170
|
||
Output = 720
|
||
Append = 1400
|
||
NewValue = 1170
|
||
SortType = 1350
|
||
SortOrder = 1410
|
||
GroupBy = 1350
|
||
Filter = 1350
|
||
Or = 1350
|
||
Or = 1350
|
||
Or = 1350
|
||
End
|
||
End
|
||
End
|
||
' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'VIEW',@level1name=N'Chip LED'
|
||
GO
|
||
IF NOT EXISTS (SELECT * FROM ::fn_listextendedproperty(N'MS_DiagramPaneCount' , N'SCHEMA',N'dbo', N'VIEW',N'Chip LED', NULL,NULL))
|
||
EXEC sys.sp_addextendedproperty @name=N'MS_DiagramPaneCount', @value=1 , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'VIEW',@level1name=N'Chip LED'
|
||
GO
|
||
IF NOT EXISTS (SELECT * FROM ::fn_listextendedproperty(N'MS_DiagramPane1' , N'SCHEMA',N'dbo', N'VIEW',N'Connector Rectangular', NULL,NULL))
|
||
EXEC sys.sp_addextendedproperty @name=N'MS_DiagramPane1', @value=N'[0E232FF0-B466-11cf-A24F-00AA00A3EFFF, 1.00]
|
||
Begin DesignProperties =
|
||
Begin PaneConfigurations =
|
||
Begin PaneConfiguration = 0
|
||
NumPanes = 4
|
||
Configuration = "(H (1[40] 4[20] 2[20] 3) )"
|
||
End
|
||
Begin PaneConfiguration = 1
|
||
NumPanes = 3
|
||
Configuration = "(H (1 [50] 4 [25] 3))"
|
||
End
|
||
Begin PaneConfiguration = 2
|
||
NumPanes = 3
|
||
Configuration = "(H (1 [50] 2 [25] 3))"
|
||
End
|
||
Begin PaneConfiguration = 3
|
||
NumPanes = 3
|
||
Configuration = "(H (4 [30] 2 [40] 3))"
|
||
End
|
||
Begin PaneConfiguration = 4
|
||
NumPanes = 2
|
||
Configuration = "(H (1 [56] 3))"
|
||
End
|
||
Begin PaneConfiguration = 5
|
||
NumPanes = 2
|
||
Configuration = "(H (2 [66] 3))"
|
||
End
|
||
Begin PaneConfiguration = 6
|
||
NumPanes = 2
|
||
Configuration = "(H (4 [50] 3))"
|
||
End
|
||
Begin PaneConfiguration = 7
|
||
NumPanes = 1
|
||
Configuration = "(V (3))"
|
||
End
|
||
Begin PaneConfiguration = 8
|
||
NumPanes = 3
|
||
Configuration = "(H (1[56] 4[18] 2) )"
|
||
End
|
||
Begin PaneConfiguration = 9
|
||
NumPanes = 2
|
||
Configuration = "(H (1 [75] 4))"
|
||
End
|
||
Begin PaneConfiguration = 10
|
||
NumPanes = 2
|
||
Configuration = "(H (1[66] 2) )"
|
||
End
|
||
Begin PaneConfiguration = 11
|
||
NumPanes = 2
|
||
Configuration = "(H (4 [60] 2))"
|
||
End
|
||
Begin PaneConfiguration = 12
|
||
NumPanes = 1
|
||
Configuration = "(H (1) )"
|
||
End
|
||
Begin PaneConfiguration = 13
|
||
NumPanes = 1
|
||
Configuration = "(V (4))"
|
||
End
|
||
Begin PaneConfiguration = 14
|
||
NumPanes = 1
|
||
Configuration = "(V (2))"
|
||
End
|
||
ActivePaneConfig = 0
|
||
End
|
||
Begin DiagramPane =
|
||
Begin Origin =
|
||
Top = 0
|
||
Left = 0
|
||
End
|
||
Begin Tables =
|
||
Begin Table = "Components"
|
||
Begin Extent =
|
||
Top = 6
|
||
Left = 38
|
||
Bottom = 387
|
||
Right = 321
|
||
End
|
||
DisplayFlags = 280
|
||
TopColumn = 53
|
||
End
|
||
End
|
||
End
|
||
Begin SQLPane =
|
||
End
|
||
Begin DataPane =
|
||
Begin ParameterDefaults = ""
|
||
End
|
||
End
|
||
Begin CriteriaPane =
|
||
Begin ColumnWidths = 11
|
||
Column = 2415
|
||
Alias = 900
|
||
Table = 1170
|
||
Output = 720
|
||
Append = 1400
|
||
NewValue = 1170
|
||
SortType = 1350
|
||
SortOrder = 1410
|
||
GroupBy = 1350
|
||
Filter = 1350
|
||
Or = 1350
|
||
Or = 1350
|
||
Or = 1350
|
||
End
|
||
End
|
||
End
|
||
' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'VIEW',@level1name=N'Connector Rectangular'
|
||
GO
|
||
IF NOT EXISTS (SELECT * FROM ::fn_listextendedproperty(N'MS_DiagramPaneCount' , N'SCHEMA',N'dbo', N'VIEW',N'Connector Rectangular', NULL,NULL))
|
||
EXEC sys.sp_addextendedproperty @name=N'MS_DiagramPaneCount', @value=1 , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'VIEW',@level1name=N'Connector Rectangular'
|
||
GO
|
||
IF NOT EXISTS (SELECT * FROM ::fn_listextendedproperty(N'MS_DiagramPane1' , N'SCHEMA',N'dbo', N'VIEW',N'Connector Terminal Block', NULL,NULL))
|
||
EXEC sys.sp_addextendedproperty @name=N'MS_DiagramPane1', @value=N'[0E232FF0-B466-11cf-A24F-00AA00A3EFFF, 1.00]
|
||
Begin DesignProperties =
|
||
Begin PaneConfigurations =
|
||
Begin PaneConfiguration = 0
|
||
NumPanes = 4
|
||
Configuration = "(H (1[40] 4[20] 2[20] 3) )"
|
||
End
|
||
Begin PaneConfiguration = 1
|
||
NumPanes = 3
|
||
Configuration = "(H (1 [50] 4 [25] 3))"
|
||
End
|
||
Begin PaneConfiguration = 2
|
||
NumPanes = 3
|
||
Configuration = "(H (1 [50] 2 [25] 3))"
|
||
End
|
||
Begin PaneConfiguration = 3
|
||
NumPanes = 3
|
||
Configuration = "(H (4 [30] 2 [40] 3))"
|
||
End
|
||
Begin PaneConfiguration = 4
|
||
NumPanes = 2
|
||
Configuration = "(H (1 [56] 3))"
|
||
End
|
||
Begin PaneConfiguration = 5
|
||
NumPanes = 2
|
||
Configuration = "(H (2 [66] 3))"
|
||
End
|
||
Begin PaneConfiguration = 6
|
||
NumPanes = 2
|
||
Configuration = "(H (4 [50] 3))"
|
||
End
|
||
Begin PaneConfiguration = 7
|
||
NumPanes = 1
|
||
Configuration = "(V (3))"
|
||
End
|
||
Begin PaneConfiguration = 8
|
||
NumPanes = 3
|
||
Configuration = "(H (1[56] 4[18] 2) )"
|
||
End
|
||
Begin PaneConfiguration = 9
|
||
NumPanes = 2
|
||
Configuration = "(H (1 [75] 4))"
|
||
End
|
||
Begin PaneConfiguration = 10
|
||
NumPanes = 2
|
||
Configuration = "(H (1[66] 2) )"
|
||
End
|
||
Begin PaneConfiguration = 11
|
||
NumPanes = 2
|
||
Configuration = "(H (4 [60] 2))"
|
||
End
|
||
Begin PaneConfiguration = 12
|
||
NumPanes = 1
|
||
Configuration = "(H (1) )"
|
||
End
|
||
Begin PaneConfiguration = 13
|
||
NumPanes = 1
|
||
Configuration = "(V (4))"
|
||
End
|
||
Begin PaneConfiguration = 14
|
||
NumPanes = 1
|
||
Configuration = "(V (2))"
|
||
End
|
||
ActivePaneConfig = 0
|
||
End
|
||
Begin DiagramPane =
|
||
Begin Origin =
|
||
Top = 0
|
||
Left = 0
|
||
End
|
||
Begin Tables =
|
||
Begin Table = "Components"
|
||
Begin Extent =
|
||
Top = 6
|
||
Left = 38
|
||
Bottom = 380
|
||
Right = 404
|
||
End
|
||
DisplayFlags = 280
|
||
TopColumn = 53
|
||
End
|
||
End
|
||
End
|
||
Begin SQLPane =
|
||
End
|
||
Begin DataPane =
|
||
Begin ParameterDefaults = ""
|
||
End
|
||
End
|
||
Begin CriteriaPane =
|
||
Begin ColumnWidths = 11
|
||
Column = 2250
|
||
Alias = 2610
|
||
Table = 1170
|
||
Output = 720
|
||
Append = 1400
|
||
NewValue = 1170
|
||
SortType = 1350
|
||
SortOrder = 1410
|
||
GroupBy = 1350
|
||
Filter = 1350
|
||
Or = 1350
|
||
Or = 1350
|
||
Or = 1350
|
||
End
|
||
End
|
||
End
|
||
' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'VIEW',@level1name=N'Connector Terminal Block'
|
||
GO
|
||
IF NOT EXISTS (SELECT * FROM ::fn_listextendedproperty(N'MS_DiagramPaneCount' , N'SCHEMA',N'dbo', N'VIEW',N'Connector Terminal Block', NULL,NULL))
|
||
EXEC sys.sp_addextendedproperty @name=N'MS_DiagramPaneCount', @value=1 , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'VIEW',@level1name=N'Connector Terminal Block'
|
||
GO
|
||
IF NOT EXISTS (SELECT * FROM ::fn_listextendedproperty(N'MS_DiagramPane1' , N'SCHEMA',N'dbo', N'VIEW',N'Connector USB', NULL,NULL))
|
||
EXEC sys.sp_addextendedproperty @name=N'MS_DiagramPane1', @value=N'[0E232FF0-B466-11cf-A24F-00AA00A3EFFF, 1.00]
|
||
Begin DesignProperties =
|
||
Begin PaneConfigurations =
|
||
Begin PaneConfiguration = 0
|
||
NumPanes = 4
|
||
Configuration = "(H (1[40] 4[20] 2[20] 3) )"
|
||
End
|
||
Begin PaneConfiguration = 1
|
||
NumPanes = 3
|
||
Configuration = "(H (1 [50] 4 [25] 3))"
|
||
End
|
||
Begin PaneConfiguration = 2
|
||
NumPanes = 3
|
||
Configuration = "(H (1 [50] 2 [25] 3))"
|
||
End
|
||
Begin PaneConfiguration = 3
|
||
NumPanes = 3
|
||
Configuration = "(H (4 [30] 2 [40] 3))"
|
||
End
|
||
Begin PaneConfiguration = 4
|
||
NumPanes = 2
|
||
Configuration = "(H (1 [56] 3))"
|
||
End
|
||
Begin PaneConfiguration = 5
|
||
NumPanes = 2
|
||
Configuration = "(H (2 [66] 3))"
|
||
End
|
||
Begin PaneConfiguration = 6
|
||
NumPanes = 2
|
||
Configuration = "(H (4 [50] 3))"
|
||
End
|
||
Begin PaneConfiguration = 7
|
||
NumPanes = 1
|
||
Configuration = "(V (3))"
|
||
End
|
||
Begin PaneConfiguration = 8
|
||
NumPanes = 3
|
||
Configuration = "(H (1[56] 4[18] 2) )"
|
||
End
|
||
Begin PaneConfiguration = 9
|
||
NumPanes = 2
|
||
Configuration = "(H (1 [75] 4))"
|
||
End
|
||
Begin PaneConfiguration = 10
|
||
NumPanes = 2
|
||
Configuration = "(H (1[66] 2) )"
|
||
End
|
||
Begin PaneConfiguration = 11
|
||
NumPanes = 2
|
||
Configuration = "(H (4 [60] 2))"
|
||
End
|
||
Begin PaneConfiguration = 12
|
||
NumPanes = 1
|
||
Configuration = "(H (1) )"
|
||
End
|
||
Begin PaneConfiguration = 13
|
||
NumPanes = 1
|
||
Configuration = "(V (4))"
|
||
End
|
||
Begin PaneConfiguration = 14
|
||
NumPanes = 1
|
||
Configuration = "(V (2))"
|
||
End
|
||
ActivePaneConfig = 0
|
||
End
|
||
Begin DiagramPane =
|
||
Begin Origin =
|
||
Top = 0
|
||
Left = 0
|
||
End
|
||
Begin Tables =
|
||
Begin Table = "Components"
|
||
Begin Extent =
|
||
Top = 6
|
||
Left = 38
|
||
Bottom = 136
|
||
Right = 279
|
||
End
|
||
DisplayFlags = 280
|
||
TopColumn = 0
|
||
End
|
||
End
|
||
End
|
||
Begin SQLPane =
|
||
End
|
||
Begin DataPane =
|
||
Begin ParameterDefaults = ""
|
||
End
|
||
End
|
||
Begin CriteriaPane =
|
||
Begin ColumnWidths = 11
|
||
Column = 1440
|
||
Alias = 900
|
||
Table = 1170
|
||
Output = 720
|
||
Append = 1400
|
||
NewValue = 1170
|
||
SortType = 1350
|
||
SortOrder = 1410
|
||
GroupBy = 1350
|
||
Filter = 1350
|
||
Or = 1350
|
||
Or = 1350
|
||
Or = 1350
|
||
End
|
||
End
|
||
End
|
||
' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'VIEW',@level1name=N'Connector USB'
|
||
GO
|
||
IF NOT EXISTS (SELECT * FROM ::fn_listextendedproperty(N'MS_DiagramPaneCount' , N'SCHEMA',N'dbo', N'VIEW',N'Connector USB', NULL,NULL))
|
||
EXEC sys.sp_addextendedproperty @name=N'MS_DiagramPaneCount', @value=1 , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'VIEW',@level1name=N'Connector USB'
|
||
GO
|
||
IF NOT EXISTS (SELECT * FROM ::fn_listextendedproperty(N'MS_DiagramPane1' , N'SCHEMA',N'dbo', N'VIEW',N'Digital to Analogue Converter', NULL,NULL))
|
||
EXEC sys.sp_addextendedproperty @name=N'MS_DiagramPane1', @value=N'[0E232FF0-B466-11cf-A24F-00AA00A3EFFF, 1.00]
|
||
Begin DesignProperties =
|
||
Begin PaneConfigurations =
|
||
Begin PaneConfiguration = 0
|
||
NumPanes = 4
|
||
Configuration = "(H (1[40] 4[20] 2[20] 3) )"
|
||
End
|
||
Begin PaneConfiguration = 1
|
||
NumPanes = 3
|
||
Configuration = "(H (1 [50] 4 [25] 3))"
|
||
End
|
||
Begin PaneConfiguration = 2
|
||
NumPanes = 3
|
||
Configuration = "(H (1 [50] 2 [25] 3))"
|
||
End
|
||
Begin PaneConfiguration = 3
|
||
NumPanes = 3
|
||
Configuration = "(H (4 [30] 2 [40] 3))"
|
||
End
|
||
Begin PaneConfiguration = 4
|
||
NumPanes = 2
|
||
Configuration = "(H (1 [56] 3))"
|
||
End
|
||
Begin PaneConfiguration = 5
|
||
NumPanes = 2
|
||
Configuration = "(H (2 [66] 3))"
|
||
End
|
||
Begin PaneConfiguration = 6
|
||
NumPanes = 2
|
||
Configuration = "(H (4 [50] 3))"
|
||
End
|
||
Begin PaneConfiguration = 7
|
||
NumPanes = 1
|
||
Configuration = "(V (3))"
|
||
End
|
||
Begin PaneConfiguration = 8
|
||
NumPanes = 3
|
||
Configuration = "(H (1[56] 4[18] 2) )"
|
||
End
|
||
Begin PaneConfiguration = 9
|
||
NumPanes = 2
|
||
Configuration = "(H (1 [75] 4))"
|
||
End
|
||
Begin PaneConfiguration = 10
|
||
NumPanes = 2
|
||
Configuration = "(H (1[66] 2) )"
|
||
End
|
||
Begin PaneConfiguration = 11
|
||
NumPanes = 2
|
||
Configuration = "(H (4 [60] 2))"
|
||
End
|
||
Begin PaneConfiguration = 12
|
||
NumPanes = 1
|
||
Configuration = "(H (1) )"
|
||
End
|
||
Begin PaneConfiguration = 13
|
||
NumPanes = 1
|
||
Configuration = "(V (4))"
|
||
End
|
||
Begin PaneConfiguration = 14
|
||
NumPanes = 1
|
||
Configuration = "(V (2))"
|
||
End
|
||
ActivePaneConfig = 0
|
||
End
|
||
Begin DiagramPane =
|
||
Begin Origin =
|
||
Top = 0
|
||
Left = 0
|
||
End
|
||
Begin Tables =
|
||
Begin Table = "Components"
|
||
Begin Extent =
|
||
Top = 6
|
||
Left = 38
|
||
Bottom = 136
|
||
Right = 279
|
||
End
|
||
DisplayFlags = 280
|
||
TopColumn = 0
|
||
End
|
||
End
|
||
End
|
||
Begin SQLPane =
|
||
End
|
||
Begin DataPane =
|
||
Begin ParameterDefaults = ""
|
||
End
|
||
End
|
||
Begin CriteriaPane =
|
||
Begin ColumnWidths = 11
|
||
Column = 1440
|
||
Alias = 900
|
||
Table = 1170
|
||
Output = 720
|
||
Append = 1400
|
||
NewValue = 1170
|
||
SortType = 1350
|
||
SortOrder = 1410
|
||
GroupBy = 1350
|
||
Filter = 1350
|
||
Or = 1350
|
||
Or = 1350
|
||
Or = 1350
|
||
End
|
||
End
|
||
End
|
||
' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'VIEW',@level1name=N'Digital to Analogue Converter'
|
||
GO
|
||
IF NOT EXISTS (SELECT * FROM ::fn_listextendedproperty(N'MS_DiagramPaneCount' , N'SCHEMA',N'dbo', N'VIEW',N'Digital to Analogue Converter', NULL,NULL))
|
||
EXEC sys.sp_addextendedproperty @name=N'MS_DiagramPaneCount', @value=1 , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'VIEW',@level1name=N'Digital to Analogue Converter'
|
||
GO
|
||
IF NOT EXISTS (SELECT * FROM ::fn_listextendedproperty(N'MS_DiagramPane1' , N'SCHEMA',N'dbo', N'VIEW',N'Diode Rectifier', NULL,NULL))
|
||
EXEC sys.sp_addextendedproperty @name=N'MS_DiagramPane1', @value=N'[0E232FF0-B466-11cf-A24F-00AA00A3EFFF, 1.00]
|
||
Begin DesignProperties =
|
||
Begin PaneConfigurations =
|
||
Begin PaneConfiguration = 0
|
||
NumPanes = 4
|
||
Configuration = "(H (1[24] 4[36] 2[20] 3) )"
|
||
End
|
||
Begin PaneConfiguration = 1
|
||
NumPanes = 3
|
||
Configuration = "(H (1 [50] 4 [25] 3))"
|
||
End
|
||
Begin PaneConfiguration = 2
|
||
NumPanes = 3
|
||
Configuration = "(H (1 [50] 2 [25] 3))"
|
||
End
|
||
Begin PaneConfiguration = 3
|
||
NumPanes = 3
|
||
Configuration = "(H (4 [30] 2 [40] 3))"
|
||
End
|
||
Begin PaneConfiguration = 4
|
||
NumPanes = 2
|
||
Configuration = "(H (1 [56] 3))"
|
||
End
|
||
Begin PaneConfiguration = 5
|
||
NumPanes = 2
|
||
Configuration = "(H (2 [66] 3))"
|
||
End
|
||
Begin PaneConfiguration = 6
|
||
NumPanes = 2
|
||
Configuration = "(H (4 [50] 3))"
|
||
End
|
||
Begin PaneConfiguration = 7
|
||
NumPanes = 1
|
||
Configuration = "(V (3))"
|
||
End
|
||
Begin PaneConfiguration = 8
|
||
NumPanes = 3
|
||
Configuration = "(H (1[56] 4[18] 2) )"
|
||
End
|
||
Begin PaneConfiguration = 9
|
||
NumPanes = 2
|
||
Configuration = "(H (1 [75] 4))"
|
||
End
|
||
Begin PaneConfiguration = 10
|
||
NumPanes = 2
|
||
Configuration = "(H (1[66] 2) )"
|
||
End
|
||
Begin PaneConfiguration = 11
|
||
NumPanes = 2
|
||
Configuration = "(H (4 [60] 2))"
|
||
End
|
||
Begin PaneConfiguration = 12
|
||
NumPanes = 1
|
||
Configuration = "(H (1) )"
|
||
End
|
||
Begin PaneConfiguration = 13
|
||
NumPanes = 1
|
||
Configuration = "(V (4))"
|
||
End
|
||
Begin PaneConfiguration = 14
|
||
NumPanes = 1
|
||
Configuration = "(V (2))"
|
||
End
|
||
ActivePaneConfig = 0
|
||
End
|
||
Begin DiagramPane =
|
||
Begin Origin =
|
||
Top = 0
|
||
Left = 0
|
||
End
|
||
Begin Tables =
|
||
Begin Table = "Components"
|
||
Begin Extent =
|
||
Top = 6
|
||
Left = 38
|
||
Bottom = 245
|
||
Right = 417
|
||
End
|
||
DisplayFlags = 280
|
||
TopColumn = 0
|
||
End
|
||
End
|
||
End
|
||
Begin SQLPane =
|
||
End
|
||
Begin DataPane =
|
||
Begin ParameterDefaults = ""
|
||
End
|
||
End
|
||
Begin CriteriaPane =
|
||
Begin ColumnWidths = 11
|
||
Column = 2340
|
||
Alias = 3150
|
||
Table = 1170
|
||
Output = 720
|
||
Append = 1400
|
||
NewValue = 1170
|
||
SortType = 1350
|
||
SortOrder = 1410
|
||
GroupBy = 1350
|
||
Filter = 1350
|
||
Or = 1350
|
||
Or = 1350
|
||
Or = 1350
|
||
End
|
||
End
|
||
End
|
||
' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'VIEW',@level1name=N'Diode Rectifier'
|
||
GO
|
||
IF NOT EXISTS (SELECT * FROM ::fn_listextendedproperty(N'MS_DiagramPaneCount' , N'SCHEMA',N'dbo', N'VIEW',N'Diode Rectifier', NULL,NULL))
|
||
EXEC sys.sp_addextendedproperty @name=N'MS_DiagramPaneCount', @value=1 , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'VIEW',@level1name=N'Diode Rectifier'
|
||
GO
|
||
IF NOT EXISTS (SELECT * FROM ::fn_listextendedproperty(N'MS_DiagramPane1' , N'SCHEMA',N'dbo', N'VIEW',N'Diode TVS', NULL,NULL))
|
||
EXEC sys.sp_addextendedproperty @name=N'MS_DiagramPane1', @value=N'[0E232FF0-B466-11cf-A24F-00AA00A3EFFF, 1.00]
|
||
Begin DesignProperties =
|
||
Begin PaneConfigurations =
|
||
Begin PaneConfiguration = 0
|
||
NumPanes = 4
|
||
Configuration = "(H (1[40] 4[20] 2[20] 3) )"
|
||
End
|
||
Begin PaneConfiguration = 1
|
||
NumPanes = 3
|
||
Configuration = "(H (1 [50] 4 [25] 3))"
|
||
End
|
||
Begin PaneConfiguration = 2
|
||
NumPanes = 3
|
||
Configuration = "(H (1 [50] 2 [25] 3))"
|
||
End
|
||
Begin PaneConfiguration = 3
|
||
NumPanes = 3
|
||
Configuration = "(H (4 [30] 2 [40] 3))"
|
||
End
|
||
Begin PaneConfiguration = 4
|
||
NumPanes = 2
|
||
Configuration = "(H (1 [56] 3))"
|
||
End
|
||
Begin PaneConfiguration = 5
|
||
NumPanes = 2
|
||
Configuration = "(H (2 [66] 3))"
|
||
End
|
||
Begin PaneConfiguration = 6
|
||
NumPanes = 2
|
||
Configuration = "(H (4 [50] 3))"
|
||
End
|
||
Begin PaneConfiguration = 7
|
||
NumPanes = 1
|
||
Configuration = "(V (3))"
|
||
End
|
||
Begin PaneConfiguration = 8
|
||
NumPanes = 3
|
||
Configuration = "(H (1[56] 4[18] 2) )"
|
||
End
|
||
Begin PaneConfiguration = 9
|
||
NumPanes = 2
|
||
Configuration = "(H (1 [75] 4))"
|
||
End
|
||
Begin PaneConfiguration = 10
|
||
NumPanes = 2
|
||
Configuration = "(H (1[66] 2) )"
|
||
End
|
||
Begin PaneConfiguration = 11
|
||
NumPanes = 2
|
||
Configuration = "(H (4 [60] 2))"
|
||
End
|
||
Begin PaneConfiguration = 12
|
||
NumPanes = 1
|
||
Configuration = "(H (1) )"
|
||
End
|
||
Begin PaneConfiguration = 13
|
||
NumPanes = 1
|
||
Configuration = "(V (4))"
|
||
End
|
||
Begin PaneConfiguration = 14
|
||
NumPanes = 1
|
||
Configuration = "(V (2))"
|
||
End
|
||
ActivePaneConfig = 0
|
||
End
|
||
Begin DiagramPane =
|
||
Begin Origin =
|
||
Top = -96
|
||
Left = 0
|
||
End
|
||
Begin Tables =
|
||
Begin Table = "Components"
|
||
Begin Extent =
|
||
Top = 6
|
||
Left = 38
|
||
Bottom = 360
|
||
Right = 619
|
||
End
|
||
DisplayFlags = 280
|
||
TopColumn = 46
|
||
End
|
||
End
|
||
End
|
||
Begin SQLPane =
|
||
End
|
||
Begin DataPane =
|
||
Begin ParameterDefaults = ""
|
||
End
|
||
End
|
||
Begin CriteriaPane =
|
||
Begin ColumnWidths = 11
|
||
Column = 2250
|
||
Alias = 2085
|
||
Table = 1170
|
||
Output = 720
|
||
Append = 1400
|
||
NewValue = 1170
|
||
SortType = 1350
|
||
SortOrder = 1410
|
||
GroupBy = 1350
|
||
Filter = 1350
|
||
Or = 1350
|
||
Or = 1350
|
||
Or = 1350
|
||
End
|
||
End
|
||
End
|
||
' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'VIEW',@level1name=N'Diode TVS'
|
||
GO
|
||
IF NOT EXISTS (SELECT * FROM ::fn_listextendedproperty(N'MS_DiagramPaneCount' , N'SCHEMA',N'dbo', N'VIEW',N'Diode TVS', NULL,NULL))
|
||
EXEC sys.sp_addextendedproperty @name=N'MS_DiagramPaneCount', @value=1 , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'VIEW',@level1name=N'Diode TVS'
|
||
GO
|
||
IF NOT EXISTS (SELECT * FROM ::fn_listextendedproperty(N'MS_DiagramPane1' , N'SCHEMA',N'dbo', N'VIEW',N'Ferrite Chip', NULL,NULL))
|
||
EXEC sys.sp_addextendedproperty @name=N'MS_DiagramPane1', @value=N'[0E232FF0-B466-11cf-A24F-00AA00A3EFFF, 1.00]
|
||
Begin DesignProperties =
|
||
Begin PaneConfigurations =
|
||
Begin PaneConfiguration = 0
|
||
NumPanes = 4
|
||
Configuration = "(H (1[40] 4[20] 2[20] 3) )"
|
||
End
|
||
Begin PaneConfiguration = 1
|
||
NumPanes = 3
|
||
Configuration = "(H (1 [50] 4 [25] 3))"
|
||
End
|
||
Begin PaneConfiguration = 2
|
||
NumPanes = 3
|
||
Configuration = "(H (1 [50] 2 [25] 3))"
|
||
End
|
||
Begin PaneConfiguration = 3
|
||
NumPanes = 3
|
||
Configuration = "(H (4 [30] 2 [40] 3))"
|
||
End
|
||
Begin PaneConfiguration = 4
|
||
NumPanes = 2
|
||
Configuration = "(H (1 [56] 3))"
|
||
End
|
||
Begin PaneConfiguration = 5
|
||
NumPanes = 2
|
||
Configuration = "(H (2 [66] 3))"
|
||
End
|
||
Begin PaneConfiguration = 6
|
||
NumPanes = 2
|
||
Configuration = "(H (4 [50] 3))"
|
||
End
|
||
Begin PaneConfiguration = 7
|
||
NumPanes = 1
|
||
Configuration = "(V (3))"
|
||
End
|
||
Begin PaneConfiguration = 8
|
||
NumPanes = 3
|
||
Configuration = "(H (1[56] 4[18] 2) )"
|
||
End
|
||
Begin PaneConfiguration = 9
|
||
NumPanes = 2
|
||
Configuration = "(H (1 [75] 4))"
|
||
End
|
||
Begin PaneConfiguration = 10
|
||
NumPanes = 2
|
||
Configuration = "(H (1[66] 2) )"
|
||
End
|
||
Begin PaneConfiguration = 11
|
||
NumPanes = 2
|
||
Configuration = "(H (4 [60] 2))"
|
||
End
|
||
Begin PaneConfiguration = 12
|
||
NumPanes = 1
|
||
Configuration = "(H (1) )"
|
||
End
|
||
Begin PaneConfiguration = 13
|
||
NumPanes = 1
|
||
Configuration = "(V (4))"
|
||
End
|
||
Begin PaneConfiguration = 14
|
||
NumPanes = 1
|
||
Configuration = "(V (2))"
|
||
End
|
||
ActivePaneConfig = 0
|
||
End
|
||
Begin DiagramPane =
|
||
Begin Origin =
|
||
Top = 0
|
||
Left = 0
|
||
End
|
||
Begin Tables =
|
||
Begin Table = "Components"
|
||
Begin Extent =
|
||
Top = 6
|
||
Left = 38
|
||
Bottom = 358
|
||
Right = 279
|
||
End
|
||
DisplayFlags = 280
|
||
TopColumn = 25
|
||
End
|
||
End
|
||
End
|
||
Begin SQLPane =
|
||
End
|
||
Begin DataPane =
|
||
Begin ParameterDefaults = ""
|
||
End
|
||
End
|
||
Begin CriteriaPane =
|
||
Begin ColumnWidths = 11
|
||
Column = 4020
|
||
Alias = 900
|
||
Table = 1170
|
||
Output = 720
|
||
Append = 1400
|
||
NewValue = 1170
|
||
SortType = 1350
|
||
SortOrder = 1410
|
||
GroupBy = 1350
|
||
Filter = 1350
|
||
Or = 1350
|
||
Or = 1350
|
||
Or = 1350
|
||
End
|
||
End
|
||
End
|
||
' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'VIEW',@level1name=N'Ferrite Chip'
|
||
GO
|
||
IF NOT EXISTS (SELECT * FROM ::fn_listextendedproperty(N'MS_DiagramPaneCount' , N'SCHEMA',N'dbo', N'VIEW',N'Ferrite Chip', NULL,NULL))
|
||
EXEC sys.sp_addextendedproperty @name=N'MS_DiagramPaneCount', @value=1 , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'VIEW',@level1name=N'Ferrite Chip'
|
||
GO
|
||
IF NOT EXISTS (SELECT * FROM ::fn_listextendedproperty(N'MS_DiagramPane1' , N'SCHEMA',N'dbo', N'VIEW',N'Inductor RF', NULL,NULL))
|
||
EXEC sys.sp_addextendedproperty @name=N'MS_DiagramPane1', @value=N'[0E232FF0-B466-11cf-A24F-00AA00A3EFFF, 1.00]
|
||
Begin DesignProperties =
|
||
Begin PaneConfigurations =
|
||
Begin PaneConfiguration = 0
|
||
NumPanes = 4
|
||
Configuration = "(H (1[40] 4[20] 2[20] 3) )"
|
||
End
|
||
Begin PaneConfiguration = 1
|
||
NumPanes = 3
|
||
Configuration = "(H (1 [50] 4 [25] 3))"
|
||
End
|
||
Begin PaneConfiguration = 2
|
||
NumPanes = 3
|
||
Configuration = "(H (1 [50] 2 [25] 3))"
|
||
End
|
||
Begin PaneConfiguration = 3
|
||
NumPanes = 3
|
||
Configuration = "(H (4 [30] 2 [40] 3))"
|
||
End
|
||
Begin PaneConfiguration = 4
|
||
NumPanes = 2
|
||
Configuration = "(H (1 [56] 3))"
|
||
End
|
||
Begin PaneConfiguration = 5
|
||
NumPanes = 2
|
||
Configuration = "(H (2 [66] 3))"
|
||
End
|
||
Begin PaneConfiguration = 6
|
||
NumPanes = 2
|
||
Configuration = "(H (4 [50] 3))"
|
||
End
|
||
Begin PaneConfiguration = 7
|
||
NumPanes = 1
|
||
Configuration = "(V (3))"
|
||
End
|
||
Begin PaneConfiguration = 8
|
||
NumPanes = 3
|
||
Configuration = "(H (1[56] 4[18] 2) )"
|
||
End
|
||
Begin PaneConfiguration = 9
|
||
NumPanes = 2
|
||
Configuration = "(H (1 [75] 4))"
|
||
End
|
||
Begin PaneConfiguration = 10
|
||
NumPanes = 2
|
||
Configuration = "(H (1[66] 2) )"
|
||
End
|
||
Begin PaneConfiguration = 11
|
||
NumPanes = 2
|
||
Configuration = "(H (4 [60] 2))"
|
||
End
|
||
Begin PaneConfiguration = 12
|
||
NumPanes = 1
|
||
Configuration = "(H (1) )"
|
||
End
|
||
Begin PaneConfiguration = 13
|
||
NumPanes = 1
|
||
Configuration = "(V (4))"
|
||
End
|
||
Begin PaneConfiguration = 14
|
||
NumPanes = 1
|
||
Configuration = "(V (2))"
|
||
End
|
||
ActivePaneConfig = 0
|
||
End
|
||
Begin DiagramPane =
|
||
Begin Origin =
|
||
Top = 0
|
||
Left = 0
|
||
End
|
||
Begin Tables =
|
||
Begin Table = "Components"
|
||
Begin Extent =
|
||
Top = 6
|
||
Left = 38
|
||
Bottom = 371
|
||
Right = 310
|
||
End
|
||
DisplayFlags = 280
|
||
TopColumn = 25
|
||
End
|
||
End
|
||
End
|
||
Begin SQLPane =
|
||
End
|
||
Begin DataPane =
|
||
Begin ParameterDefaults = ""
|
||
End
|
||
End
|
||
Begin CriteriaPane =
|
||
Begin ColumnWidths = 11
|
||
Column = 2310
|
||
Alias = 1815
|
||
Table = 1170
|
||
Output = 720
|
||
Append = 1400
|
||
NewValue = 1170
|
||
SortType = 1350
|
||
SortOrder = 1410
|
||
GroupBy = 1350
|
||
Filter = 1350
|
||
Or = 1350
|
||
Or = 1350
|
||
Or = 1350
|
||
End
|
||
End
|
||
End
|
||
' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'VIEW',@level1name=N'Inductor RF'
|
||
GO
|
||
IF NOT EXISTS (SELECT * FROM ::fn_listextendedproperty(N'MS_DiagramPaneCount' , N'SCHEMA',N'dbo', N'VIEW',N'Inductor RF', NULL,NULL))
|
||
EXEC sys.sp_addextendedproperty @name=N'MS_DiagramPaneCount', @value=1 , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'VIEW',@level1name=N'Inductor RF'
|
||
GO
|
||
IF NOT EXISTS (SELECT * FROM ::fn_listextendedproperty(N'MS_DiagramPane1' , N'SCHEMA',N'dbo', N'VIEW',N'LCD Display - Graphic', NULL,NULL))
|
||
EXEC sys.sp_addextendedproperty @name=N'MS_DiagramPane1', @value=N'[0E232FF0-B466-11cf-A24F-00AA00A3EFFF, 1.00]
|
||
Begin DesignProperties =
|
||
Begin PaneConfigurations =
|
||
Begin PaneConfiguration = 0
|
||
NumPanes = 4
|
||
Configuration = "(H (1[40] 4[20] 2[20] 3) )"
|
||
End
|
||
Begin PaneConfiguration = 1
|
||
NumPanes = 3
|
||
Configuration = "(H (1 [50] 4 [25] 3))"
|
||
End
|
||
Begin PaneConfiguration = 2
|
||
NumPanes = 3
|
||
Configuration = "(H (1 [50] 2 [25] 3))"
|
||
End
|
||
Begin PaneConfiguration = 3
|
||
NumPanes = 3
|
||
Configuration = "(H (4 [30] 2 [40] 3))"
|
||
End
|
||
Begin PaneConfiguration = 4
|
||
NumPanes = 2
|
||
Configuration = "(H (1 [56] 3))"
|
||
End
|
||
Begin PaneConfiguration = 5
|
||
NumPanes = 2
|
||
Configuration = "(H (2 [66] 3))"
|
||
End
|
||
Begin PaneConfiguration = 6
|
||
NumPanes = 2
|
||
Configuration = "(H (4 [50] 3))"
|
||
End
|
||
Begin PaneConfiguration = 7
|
||
NumPanes = 1
|
||
Configuration = "(V (3))"
|
||
End
|
||
Begin PaneConfiguration = 8
|
||
NumPanes = 3
|
||
Configuration = "(H (1[56] 4[18] 2) )"
|
||
End
|
||
Begin PaneConfiguration = 9
|
||
NumPanes = 2
|
||
Configuration = "(H (1 [75] 4))"
|
||
End
|
||
Begin PaneConfiguration = 10
|
||
NumPanes = 2
|
||
Configuration = "(H (1[66] 2) )"
|
||
End
|
||
Begin PaneConfiguration = 11
|
||
NumPanes = 2
|
||
Configuration = "(H (4 [60] 2))"
|
||
End
|
||
Begin PaneConfiguration = 12
|
||
NumPanes = 1
|
||
Configuration = "(H (1) )"
|
||
End
|
||
Begin PaneConfiguration = 13
|
||
NumPanes = 1
|
||
Configuration = "(V (4))"
|
||
End
|
||
Begin PaneConfiguration = 14
|
||
NumPanes = 1
|
||
Configuration = "(V (2))"
|
||
End
|
||
ActivePaneConfig = 0
|
||
End
|
||
Begin DiagramPane =
|
||
Begin Origin =
|
||
Top = 0
|
||
Left = 0
|
||
End
|
||
Begin Tables =
|
||
Begin Table = "Components"
|
||
Begin Extent =
|
||
Top = 6
|
||
Left = 38
|
||
Bottom = 489
|
||
Right = 286
|
||
End
|
||
DisplayFlags = 280
|
||
TopColumn = 81
|
||
End
|
||
End
|
||
End
|
||
Begin SQLPane =
|
||
End
|
||
Begin DataPane =
|
||
Begin ParameterDefaults = ""
|
||
End
|
||
End
|
||
Begin CriteriaPane =
|
||
Begin ColumnWidths = 11
|
||
Column = 2415
|
||
Alias = 900
|
||
Table = 1170
|
||
Output = 720
|
||
Append = 1400
|
||
NewValue = 1170
|
||
SortType = 1350
|
||
SortOrder = 1410
|
||
GroupBy = 1350
|
||
Filter = 1350
|
||
Or = 1350
|
||
Or = 1350
|
||
Or = 1350
|
||
End
|
||
End
|
||
End
|
||
' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'VIEW',@level1name=N'LCD Display - Graphic'
|
||
GO
|
||
IF NOT EXISTS (SELECT * FROM ::fn_listextendedproperty(N'MS_DiagramPaneCount' , N'SCHEMA',N'dbo', N'VIEW',N'LCD Display - Graphic', NULL,NULL))
|
||
EXEC sys.sp_addextendedproperty @name=N'MS_DiagramPaneCount', @value=1 , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'VIEW',@level1name=N'LCD Display - Graphic'
|
||
GO
|
||
IF NOT EXISTS (SELECT * FROM ::fn_listextendedproperty(N'MS_DiagramPane1' , N'SCHEMA',N'dbo', N'VIEW',N'MCU - ARM', NULL,NULL))
|
||
EXEC sys.sp_addextendedproperty @name=N'MS_DiagramPane1', @value=N'[0E232FF0-B466-11cf-A24F-00AA00A3EFFF, 1.00]
|
||
Begin DesignProperties =
|
||
Begin PaneConfigurations =
|
||
Begin PaneConfiguration = 0
|
||
NumPanes = 4
|
||
Configuration = "(H (1[40] 4[20] 2[20] 3) )"
|
||
End
|
||
Begin PaneConfiguration = 1
|
||
NumPanes = 3
|
||
Configuration = "(H (1 [50] 4 [25] 3))"
|
||
End
|
||
Begin PaneConfiguration = 2
|
||
NumPanes = 3
|
||
Configuration = "(H (1 [50] 2 [25] 3))"
|
||
End
|
||
Begin PaneConfiguration = 3
|
||
NumPanes = 3
|
||
Configuration = "(H (4 [30] 2 [40] 3))"
|
||
End
|
||
Begin PaneConfiguration = 4
|
||
NumPanes = 2
|
||
Configuration = "(H (1 [56] 3))"
|
||
End
|
||
Begin PaneConfiguration = 5
|
||
NumPanes = 2
|
||
Configuration = "(H (2 [66] 3))"
|
||
End
|
||
Begin PaneConfiguration = 6
|
||
NumPanes = 2
|
||
Configuration = "(H (4 [50] 3))"
|
||
End
|
||
Begin PaneConfiguration = 7
|
||
NumPanes = 1
|
||
Configuration = "(V (3))"
|
||
End
|
||
Begin PaneConfiguration = 8
|
||
NumPanes = 3
|
||
Configuration = "(H (1[56] 4[18] 2) )"
|
||
End
|
||
Begin PaneConfiguration = 9
|
||
NumPanes = 2
|
||
Configuration = "(H (1 [75] 4))"
|
||
End
|
||
Begin PaneConfiguration = 10
|
||
NumPanes = 2
|
||
Configuration = "(H (1[66] 2) )"
|
||
End
|
||
Begin PaneConfiguration = 11
|
||
NumPanes = 2
|
||
Configuration = "(H (4 [60] 2))"
|
||
End
|
||
Begin PaneConfiguration = 12
|
||
NumPanes = 1
|
||
Configuration = "(H (1) )"
|
||
End
|
||
Begin PaneConfiguration = 13
|
||
NumPanes = 1
|
||
Configuration = "(V (4))"
|
||
End
|
||
Begin PaneConfiguration = 14
|
||
NumPanes = 1
|
||
Configuration = "(V (2))"
|
||
End
|
||
ActivePaneConfig = 0
|
||
End
|
||
Begin DiagramPane =
|
||
Begin Origin =
|
||
Top = 0
|
||
Left = 0
|
||
End
|
||
Begin Tables =
|
||
Begin Table = "Components"
|
||
Begin Extent =
|
||
Top = 6
|
||
Left = 38
|
||
Bottom = 136
|
||
Right = 279
|
||
End
|
||
DisplayFlags = 280
|
||
TopColumn = 0
|
||
End
|
||
End
|
||
End
|
||
Begin SQLPane =
|
||
End
|
||
Begin DataPane =
|
||
Begin ParameterDefaults = ""
|
||
End
|
||
End
|
||
Begin CriteriaPane =
|
||
Begin ColumnWidths = 11
|
||
Column = 1440
|
||
Alias = 900
|
||
Table = 1170
|
||
Output = 720
|
||
Append = 1400
|
||
NewValue = 1170
|
||
SortType = 1350
|
||
SortOrder = 1410
|
||
GroupBy = 1350
|
||
Filter = 1350
|
||
Or = 1350
|
||
Or = 1350
|
||
Or = 1350
|
||
End
|
||
End
|
||
End
|
||
' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'VIEW',@level1name=N'MCU - ARM'
|
||
GO
|
||
IF NOT EXISTS (SELECT * FROM ::fn_listextendedproperty(N'MS_DiagramPaneCount' , N'SCHEMA',N'dbo', N'VIEW',N'MCU - ARM', NULL,NULL))
|
||
EXEC sys.sp_addextendedproperty @name=N'MS_DiagramPaneCount', @value=1 , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'VIEW',@level1name=N'MCU - ARM'
|
||
GO
|
||
IF NOT EXISTS (SELECT * FROM ::fn_listextendedproperty(N'MS_DiagramPane1' , N'SCHEMA',N'dbo', N'VIEW',N'MCU - AVR', NULL,NULL))
|
||
EXEC sys.sp_addextendedproperty @name=N'MS_DiagramPane1', @value=N'[0E232FF0-B466-11cf-A24F-00AA00A3EFFF, 1.00]
|
||
Begin DesignProperties =
|
||
Begin PaneConfigurations =
|
||
Begin PaneConfiguration = 0
|
||
NumPanes = 4
|
||
Configuration = "(H (1[40] 4[20] 2[20] 3) )"
|
||
End
|
||
Begin PaneConfiguration = 1
|
||
NumPanes = 3
|
||
Configuration = "(H (1 [50] 4 [25] 3))"
|
||
End
|
||
Begin PaneConfiguration = 2
|
||
NumPanes = 3
|
||
Configuration = "(H (1 [50] 2 [25] 3))"
|
||
End
|
||
Begin PaneConfiguration = 3
|
||
NumPanes = 3
|
||
Configuration = "(H (4 [30] 2 [40] 3))"
|
||
End
|
||
Begin PaneConfiguration = 4
|
||
NumPanes = 2
|
||
Configuration = "(H (1 [56] 3))"
|
||
End
|
||
Begin PaneConfiguration = 5
|
||
NumPanes = 2
|
||
Configuration = "(H (2 [66] 3))"
|
||
End
|
||
Begin PaneConfiguration = 6
|
||
NumPanes = 2
|
||
Configuration = "(H (4 [50] 3))"
|
||
End
|
||
Begin PaneConfiguration = 7
|
||
NumPanes = 1
|
||
Configuration = "(V (3))"
|
||
End
|
||
Begin PaneConfiguration = 8
|
||
NumPanes = 3
|
||
Configuration = "(H (1[56] 4[18] 2) )"
|
||
End
|
||
Begin PaneConfiguration = 9
|
||
NumPanes = 2
|
||
Configuration = "(H (1 [75] 4))"
|
||
End
|
||
Begin PaneConfiguration = 10
|
||
NumPanes = 2
|
||
Configuration = "(H (1[66] 2) )"
|
||
End
|
||
Begin PaneConfiguration = 11
|
||
NumPanes = 2
|
||
Configuration = "(H (4 [60] 2))"
|
||
End
|
||
Begin PaneConfiguration = 12
|
||
NumPanes = 1
|
||
Configuration = "(H (1) )"
|
||
End
|
||
Begin PaneConfiguration = 13
|
||
NumPanes = 1
|
||
Configuration = "(V (4))"
|
||
End
|
||
Begin PaneConfiguration = 14
|
||
NumPanes = 1
|
||
Configuration = "(V (2))"
|
||
End
|
||
ActivePaneConfig = 0
|
||
End
|
||
Begin DiagramPane =
|
||
Begin Origin =
|
||
Top = 0
|
||
Left = 0
|
||
End
|
||
Begin Tables =
|
||
Begin Table = "Components"
|
||
Begin Extent =
|
||
Top = 6
|
||
Left = 38
|
||
Bottom = 136
|
||
Right = 279
|
||
End
|
||
DisplayFlags = 280
|
||
TopColumn = 0
|
||
End
|
||
End
|
||
End
|
||
Begin SQLPane =
|
||
End
|
||
Begin DataPane =
|
||
Begin ParameterDefaults = ""
|
||
End
|
||
End
|
||
Begin CriteriaPane =
|
||
Begin ColumnWidths = 11
|
||
Column = 1440
|
||
Alias = 900
|
||
Table = 1170
|
||
Output = 720
|
||
Append = 1400
|
||
NewValue = 1170
|
||
SortType = 1350
|
||
SortOrder = 1410
|
||
GroupBy = 1350
|
||
Filter = 1350
|
||
Or = 1350
|
||
Or = 1350
|
||
Or = 1350
|
||
End
|
||
End
|
||
End
|
||
' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'VIEW',@level1name=N'MCU - AVR'
|
||
GO
|
||
IF NOT EXISTS (SELECT * FROM ::fn_listextendedproperty(N'MS_DiagramPaneCount' , N'SCHEMA',N'dbo', N'VIEW',N'MCU - AVR', NULL,NULL))
|
||
EXEC sys.sp_addextendedproperty @name=N'MS_DiagramPaneCount', @value=1 , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'VIEW',@level1name=N'MCU - AVR'
|
||
GO
|
||
IF NOT EXISTS (SELECT * FROM ::fn_listextendedproperty(N'MS_DiagramPane1' , N'SCHEMA',N'dbo', N'VIEW',N'Memory - EEPROM', NULL,NULL))
|
||
EXEC sys.sp_addextendedproperty @name=N'MS_DiagramPane1', @value=N'[0E232FF0-B466-11cf-A24F-00AA00A3EFFF, 1.00]
|
||
Begin DesignProperties =
|
||
Begin PaneConfigurations =
|
||
Begin PaneConfiguration = 0
|
||
NumPanes = 4
|
||
Configuration = "(H (1[40] 4[20] 2[20] 3) )"
|
||
End
|
||
Begin PaneConfiguration = 1
|
||
NumPanes = 3
|
||
Configuration = "(H (1 [50] 4 [25] 3))"
|
||
End
|
||
Begin PaneConfiguration = 2
|
||
NumPanes = 3
|
||
Configuration = "(H (1 [50] 2 [25] 3))"
|
||
End
|
||
Begin PaneConfiguration = 3
|
||
NumPanes = 3
|
||
Configuration = "(H (4 [30] 2 [40] 3))"
|
||
End
|
||
Begin PaneConfiguration = 4
|
||
NumPanes = 2
|
||
Configuration = "(H (1 [56] 3))"
|
||
End
|
||
Begin PaneConfiguration = 5
|
||
NumPanes = 2
|
||
Configuration = "(H (2 [66] 3))"
|
||
End
|
||
Begin PaneConfiguration = 6
|
||
NumPanes = 2
|
||
Configuration = "(H (4 [50] 3))"
|
||
End
|
||
Begin PaneConfiguration = 7
|
||
NumPanes = 1
|
||
Configuration = "(V (3))"
|
||
End
|
||
Begin PaneConfiguration = 8
|
||
NumPanes = 3
|
||
Configuration = "(H (1[56] 4[18] 2) )"
|
||
End
|
||
Begin PaneConfiguration = 9
|
||
NumPanes = 2
|
||
Configuration = "(H (1 [75] 4))"
|
||
End
|
||
Begin PaneConfiguration = 10
|
||
NumPanes = 2
|
||
Configuration = "(H (1[66] 2) )"
|
||
End
|
||
Begin PaneConfiguration = 11
|
||
NumPanes = 2
|
||
Configuration = "(H (4 [60] 2))"
|
||
End
|
||
Begin PaneConfiguration = 12
|
||
NumPanes = 1
|
||
Configuration = "(H (1) )"
|
||
End
|
||
Begin PaneConfiguration = 13
|
||
NumPanes = 1
|
||
Configuration = "(V (4))"
|
||
End
|
||
Begin PaneConfiguration = 14
|
||
NumPanes = 1
|
||
Configuration = "(V (2))"
|
||
End
|
||
ActivePaneConfig = 0
|
||
End
|
||
Begin DiagramPane =
|
||
Begin Origin =
|
||
Top = 0
|
||
Left = 0
|
||
End
|
||
Begin Tables =
|
||
Begin Table = "Components"
|
||
Begin Extent =
|
||
Top = 6
|
||
Left = 38
|
||
Bottom = 136
|
||
Right = 279
|
||
End
|
||
DisplayFlags = 280
|
||
TopColumn = 0
|
||
End
|
||
End
|
||
End
|
||
Begin SQLPane =
|
||
End
|
||
Begin DataPane =
|
||
Begin ParameterDefaults = ""
|
||
End
|
||
End
|
||
Begin CriteriaPane =
|
||
Begin ColumnWidths = 11
|
||
Column = 1440
|
||
Alias = 900
|
||
Table = 1170
|
||
Output = 720
|
||
Append = 1400
|
||
NewValue = 1170
|
||
SortType = 1350
|
||
SortOrder = 1410
|
||
GroupBy = 1350
|
||
Filter = 1350
|
||
Or = 1350
|
||
Or = 1350
|
||
Or = 1350
|
||
End
|
||
End
|
||
End
|
||
' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'VIEW',@level1name=N'Memory - EEPROM'
|
||
GO
|
||
IF NOT EXISTS (SELECT * FROM ::fn_listextendedproperty(N'MS_DiagramPaneCount' , N'SCHEMA',N'dbo', N'VIEW',N'Memory - EEPROM', NULL,NULL))
|
||
EXEC sys.sp_addextendedproperty @name=N'MS_DiagramPaneCount', @value=1 , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'VIEW',@level1name=N'Memory - EEPROM'
|
||
GO
|
||
IF NOT EXISTS (SELECT * FROM ::fn_listextendedproperty(N'MS_DiagramPane1' , N'SCHEMA',N'dbo', N'VIEW',N'Memory - FLASH', NULL,NULL))
|
||
EXEC sys.sp_addextendedproperty @name=N'MS_DiagramPane1', @value=N'[0E232FF0-B466-11cf-A24F-00AA00A3EFFF, 1.00]
|
||
Begin DesignProperties =
|
||
Begin PaneConfigurations =
|
||
Begin PaneConfiguration = 0
|
||
NumPanes = 4
|
||
Configuration = "(H (1[40] 4[20] 2[20] 3) )"
|
||
End
|
||
Begin PaneConfiguration = 1
|
||
NumPanes = 3
|
||
Configuration = "(H (1 [50] 4 [25] 3))"
|
||
End
|
||
Begin PaneConfiguration = 2
|
||
NumPanes = 3
|
||
Configuration = "(H (1 [50] 2 [25] 3))"
|
||
End
|
||
Begin PaneConfiguration = 3
|
||
NumPanes = 3
|
||
Configuration = "(H (4 [30] 2 [40] 3))"
|
||
End
|
||
Begin PaneConfiguration = 4
|
||
NumPanes = 2
|
||
Configuration = "(H (1 [56] 3))"
|
||
End
|
||
Begin PaneConfiguration = 5
|
||
NumPanes = 2
|
||
Configuration = "(H (2 [66] 3))"
|
||
End
|
||
Begin PaneConfiguration = 6
|
||
NumPanes = 2
|
||
Configuration = "(H (4 [50] 3))"
|
||
End
|
||
Begin PaneConfiguration = 7
|
||
NumPanes = 1
|
||
Configuration = "(V (3))"
|
||
End
|
||
Begin PaneConfiguration = 8
|
||
NumPanes = 3
|
||
Configuration = "(H (1[56] 4[18] 2) )"
|
||
End
|
||
Begin PaneConfiguration = 9
|
||
NumPanes = 2
|
||
Configuration = "(H (1 [75] 4))"
|
||
End
|
||
Begin PaneConfiguration = 10
|
||
NumPanes = 2
|
||
Configuration = "(H (1[66] 2) )"
|
||
End
|
||
Begin PaneConfiguration = 11
|
||
NumPanes = 2
|
||
Configuration = "(H (4 [60] 2))"
|
||
End
|
||
Begin PaneConfiguration = 12
|
||
NumPanes = 1
|
||
Configuration = "(H (1) )"
|
||
End
|
||
Begin PaneConfiguration = 13
|
||
NumPanes = 1
|
||
Configuration = "(V (4))"
|
||
End
|
||
Begin PaneConfiguration = 14
|
||
NumPanes = 1
|
||
Configuration = "(V (2))"
|
||
End
|
||
ActivePaneConfig = 0
|
||
End
|
||
Begin DiagramPane =
|
||
Begin Origin =
|
||
Top = 0
|
||
Left = 0
|
||
End
|
||
Begin Tables =
|
||
Begin Table = "Components"
|
||
Begin Extent =
|
||
Top = 6
|
||
Left = 38
|
||
Bottom = 136
|
||
Right = 279
|
||
End
|
||
DisplayFlags = 280
|
||
TopColumn = 0
|
||
End
|
||
End
|
||
End
|
||
Begin SQLPane =
|
||
End
|
||
Begin DataPane =
|
||
Begin ParameterDefaults = ""
|
||
End
|
||
End
|
||
Begin CriteriaPane =
|
||
Begin ColumnWidths = 11
|
||
Column = 1440
|
||
Alias = 900
|
||
Table = 1170
|
||
Output = 720
|
||
Append = 1400
|
||
NewValue = 1170
|
||
SortType = 1350
|
||
SortOrder = 1410
|
||
GroupBy = 1350
|
||
Filter = 1350
|
||
Or = 1350
|
||
Or = 1350
|
||
Or = 1350
|
||
End
|
||
End
|
||
End
|
||
' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'VIEW',@level1name=N'Memory - FLASH'
|
||
GO
|
||
IF NOT EXISTS (SELECT * FROM ::fn_listextendedproperty(N'MS_DiagramPaneCount' , N'SCHEMA',N'dbo', N'VIEW',N'Memory - FLASH', NULL,NULL))
|
||
EXEC sys.sp_addextendedproperty @name=N'MS_DiagramPaneCount', @value=1 , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'VIEW',@level1name=N'Memory - FLASH'
|
||
GO
|
||
IF NOT EXISTS (SELECT * FROM ::fn_listextendedproperty(N'MS_DiagramPane1' , N'SCHEMA',N'dbo', N'VIEW',N'N-Channel Dual FET Array', NULL,NULL))
|
||
EXEC sys.sp_addextendedproperty @name=N'MS_DiagramPane1', @value=N'[0E232FF0-B466-11cf-A24F-00AA00A3EFFF, 1.00]
|
||
Begin DesignProperties =
|
||
Begin PaneConfigurations =
|
||
Begin PaneConfiguration = 0
|
||
NumPanes = 4
|
||
Configuration = "(H (1[40] 4[20] 2[20] 3) )"
|
||
End
|
||
Begin PaneConfiguration = 1
|
||
NumPanes = 3
|
||
Configuration = "(H (1 [50] 4 [25] 3))"
|
||
End
|
||
Begin PaneConfiguration = 2
|
||
NumPanes = 3
|
||
Configuration = "(H (1 [50] 2 [25] 3))"
|
||
End
|
||
Begin PaneConfiguration = 3
|
||
NumPanes = 3
|
||
Configuration = "(H (4 [30] 2 [40] 3))"
|
||
End
|
||
Begin PaneConfiguration = 4
|
||
NumPanes = 2
|
||
Configuration = "(H (1 [56] 3))"
|
||
End
|
||
Begin PaneConfiguration = 5
|
||
NumPanes = 2
|
||
Configuration = "(H (2 [66] 3))"
|
||
End
|
||
Begin PaneConfiguration = 6
|
||
NumPanes = 2
|
||
Configuration = "(H (4 [50] 3))"
|
||
End
|
||
Begin PaneConfiguration = 7
|
||
NumPanes = 1
|
||
Configuration = "(V (3))"
|
||
End
|
||
Begin PaneConfiguration = 8
|
||
NumPanes = 3
|
||
Configuration = "(H (1[56] 4[18] 2) )"
|
||
End
|
||
Begin PaneConfiguration = 9
|
||
NumPanes = 2
|
||
Configuration = "(H (1 [75] 4))"
|
||
End
|
||
Begin PaneConfiguration = 10
|
||
NumPanes = 2
|
||
Configuration = "(H (1[66] 2) )"
|
||
End
|
||
Begin PaneConfiguration = 11
|
||
NumPanes = 2
|
||
Configuration = "(H (4 [60] 2))"
|
||
End
|
||
Begin PaneConfiguration = 12
|
||
NumPanes = 1
|
||
Configuration = "(H (1) )"
|
||
End
|
||
Begin PaneConfiguration = 13
|
||
NumPanes = 1
|
||
Configuration = "(V (4))"
|
||
End
|
||
Begin PaneConfiguration = 14
|
||
NumPanes = 1
|
||
Configuration = "(V (2))"
|
||
End
|
||
ActivePaneConfig = 0
|
||
End
|
||
Begin DiagramPane =
|
||
Begin Origin =
|
||
Top = 0
|
||
Left = 0
|
||
End
|
||
Begin Tables =
|
||
Begin Table = "Components"
|
||
Begin Extent =
|
||
Top = 6
|
||
Left = 38
|
||
Bottom = 136
|
||
Right = 279
|
||
End
|
||
DisplayFlags = 280
|
||
TopColumn = 0
|
||
End
|
||
End
|
||
End
|
||
Begin SQLPane =
|
||
End
|
||
Begin DataPane =
|
||
Begin ParameterDefaults = ""
|
||
End
|
||
End
|
||
Begin CriteriaPane =
|
||
Begin ColumnWidths = 11
|
||
Column = 1440
|
||
Alias = 900
|
||
Table = 1170
|
||
Output = 720
|
||
Append = 1400
|
||
NewValue = 1170
|
||
SortType = 1350
|
||
SortOrder = 1410
|
||
GroupBy = 1350
|
||
Filter = 1350
|
||
Or = 1350
|
||
Or = 1350
|
||
Or = 1350
|
||
End
|
||
End
|
||
End
|
||
' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'VIEW',@level1name=N'N-Channel Dual FET Array'
|
||
GO
|
||
IF NOT EXISTS (SELECT * FROM ::fn_listextendedproperty(N'MS_DiagramPaneCount' , N'SCHEMA',N'dbo', N'VIEW',N'N-Channel Dual FET Array', NULL,NULL))
|
||
EXEC sys.sp_addextendedproperty @name=N'MS_DiagramPaneCount', @value=1 , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'VIEW',@level1name=N'N-Channel Dual FET Array'
|
||
GO
|
||
IF NOT EXISTS (SELECT * FROM ::fn_listextendedproperty(N'MS_DiagramPane1' , N'SCHEMA',N'dbo', N'VIEW',N'N-Channel FET', NULL,NULL))
|
||
EXEC sys.sp_addextendedproperty @name=N'MS_DiagramPane1', @value=N'[0E232FF0-B466-11cf-A24F-00AA00A3EFFF, 1.00]
|
||
Begin DesignProperties =
|
||
Begin PaneConfigurations =
|
||
Begin PaneConfiguration = 0
|
||
NumPanes = 4
|
||
Configuration = "(H (1[40] 4[20] 2[20] 3) )"
|
||
End
|
||
Begin PaneConfiguration = 1
|
||
NumPanes = 3
|
||
Configuration = "(H (1 [50] 4 [25] 3))"
|
||
End
|
||
Begin PaneConfiguration = 2
|
||
NumPanes = 3
|
||
Configuration = "(H (1 [50] 2 [25] 3))"
|
||
End
|
||
Begin PaneConfiguration = 3
|
||
NumPanes = 3
|
||
Configuration = "(H (4 [30] 2 [40] 3))"
|
||
End
|
||
Begin PaneConfiguration = 4
|
||
NumPanes = 2
|
||
Configuration = "(H (1 [56] 3))"
|
||
End
|
||
Begin PaneConfiguration = 5
|
||
NumPanes = 2
|
||
Configuration = "(H (2 [66] 3))"
|
||
End
|
||
Begin PaneConfiguration = 6
|
||
NumPanes = 2
|
||
Configuration = "(H (4 [50] 3))"
|
||
End
|
||
Begin PaneConfiguration = 7
|
||
NumPanes = 1
|
||
Configuration = "(V (3))"
|
||
End
|
||
Begin PaneConfiguration = 8
|
||
NumPanes = 3
|
||
Configuration = "(H (1[56] 4[18] 2) )"
|
||
End
|
||
Begin PaneConfiguration = 9
|
||
NumPanes = 2
|
||
Configuration = "(H (1 [75] 4))"
|
||
End
|
||
Begin PaneConfiguration = 10
|
||
NumPanes = 2
|
||
Configuration = "(H (1[66] 2) )"
|
||
End
|
||
Begin PaneConfiguration = 11
|
||
NumPanes = 2
|
||
Configuration = "(H (4 [60] 2))"
|
||
End
|
||
Begin PaneConfiguration = 12
|
||
NumPanes = 1
|
||
Configuration = "(H (1) )"
|
||
End
|
||
Begin PaneConfiguration = 13
|
||
NumPanes = 1
|
||
Configuration = "(V (4))"
|
||
End
|
||
Begin PaneConfiguration = 14
|
||
NumPanes = 1
|
||
Configuration = "(V (2))"
|
||
End
|
||
ActivePaneConfig = 0
|
||
End
|
||
Begin DiagramPane =
|
||
Begin Origin =
|
||
Top = 0
|
||
Left = 0
|
||
End
|
||
Begin Tables =
|
||
Begin Table = "Components"
|
||
Begin Extent =
|
||
Top = 6
|
||
Left = 38
|
||
Bottom = 518
|
||
Right = 279
|
||
End
|
||
DisplayFlags = 280
|
||
TopColumn = 62
|
||
End
|
||
End
|
||
End
|
||
Begin SQLPane =
|
||
End
|
||
Begin DataPane =
|
||
Begin ParameterDefaults = ""
|
||
End
|
||
End
|
||
Begin CriteriaPane =
|
||
Begin ColumnWidths = 11
|
||
Column = 1440
|
||
Alias = 900
|
||
Table = 1170
|
||
Output = 720
|
||
Append = 1400
|
||
NewValue = 1170
|
||
SortType = 1350
|
||
SortOrder = 1410
|
||
GroupBy = 1350
|
||
Filter = 1350
|
||
Or = 1350
|
||
Or = 1350
|
||
Or = 1350
|
||
End
|
||
End
|
||
End
|
||
' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'VIEW',@level1name=N'N-Channel FET'
|
||
GO
|
||
IF NOT EXISTS (SELECT * FROM ::fn_listextendedproperty(N'MS_DiagramPaneCount' , N'SCHEMA',N'dbo', N'VIEW',N'N-Channel FET', NULL,NULL))
|
||
EXEC sys.sp_addextendedproperty @name=N'MS_DiagramPaneCount', @value=1 , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'VIEW',@level1name=N'N-Channel FET'
|
||
GO
|
||
IF NOT EXISTS (SELECT * FROM ::fn_listextendedproperty(N'MS_DiagramPane1' , N'SCHEMA',N'dbo', N'VIEW',N'Oscillator - Crystal', NULL,NULL))
|
||
EXEC sys.sp_addextendedproperty @name=N'MS_DiagramPane1', @value=N'[0E232FF0-B466-11cf-A24F-00AA00A3EFFF, 1.00]
|
||
Begin DesignProperties =
|
||
Begin PaneConfigurations =
|
||
Begin PaneConfiguration = 0
|
||
NumPanes = 4
|
||
Configuration = "(H (1[40] 4[20] 2[20] 3) )"
|
||
End
|
||
Begin PaneConfiguration = 1
|
||
NumPanes = 3
|
||
Configuration = "(H (1 [50] 4 [25] 3))"
|
||
End
|
||
Begin PaneConfiguration = 2
|
||
NumPanes = 3
|
||
Configuration = "(H (1 [50] 2 [25] 3))"
|
||
End
|
||
Begin PaneConfiguration = 3
|
||
NumPanes = 3
|
||
Configuration = "(H (4 [30] 2 [40] 3))"
|
||
End
|
||
Begin PaneConfiguration = 4
|
||
NumPanes = 2
|
||
Configuration = "(H (1 [56] 3))"
|
||
End
|
||
Begin PaneConfiguration = 5
|
||
NumPanes = 2
|
||
Configuration = "(H (2 [66] 3))"
|
||
End
|
||
Begin PaneConfiguration = 6
|
||
NumPanes = 2
|
||
Configuration = "(H (4 [50] 3))"
|
||
End
|
||
Begin PaneConfiguration = 7
|
||
NumPanes = 1
|
||
Configuration = "(V (3))"
|
||
End
|
||
Begin PaneConfiguration = 8
|
||
NumPanes = 3
|
||
Configuration = "(H (1[56] 4[18] 2) )"
|
||
End
|
||
Begin PaneConfiguration = 9
|
||
NumPanes = 2
|
||
Configuration = "(H (1 [75] 4))"
|
||
End
|
||
Begin PaneConfiguration = 10
|
||
NumPanes = 2
|
||
Configuration = "(H (1[66] 2) )"
|
||
End
|
||
Begin PaneConfiguration = 11
|
||
NumPanes = 2
|
||
Configuration = "(H (4 [60] 2))"
|
||
End
|
||
Begin PaneConfiguration = 12
|
||
NumPanes = 1
|
||
Configuration = "(H (1) )"
|
||
End
|
||
Begin PaneConfiguration = 13
|
||
NumPanes = 1
|
||
Configuration = "(V (4))"
|
||
End
|
||
Begin PaneConfiguration = 14
|
||
NumPanes = 1
|
||
Configuration = "(V (2))"
|
||
End
|
||
ActivePaneConfig = 0
|
||
End
|
||
Begin DiagramPane =
|
||
Begin Origin =
|
||
Top = 0
|
||
Left = 0
|
||
End
|
||
Begin Tables =
|
||
Begin Table = "Components"
|
||
Begin Extent =
|
||
Top = 6
|
||
Left = 38
|
||
Bottom = 136
|
||
Right = 279
|
||
End
|
||
DisplayFlags = 280
|
||
TopColumn = 0
|
||
End
|
||
End
|
||
End
|
||
Begin SQLPane =
|
||
End
|
||
Begin DataPane =
|
||
Begin ParameterDefaults = ""
|
||
End
|
||
End
|
||
Begin CriteriaPane =
|
||
Begin ColumnWidths = 11
|
||
Column = 1440
|
||
Alias = 900
|
||
Table = 1170
|
||
Output = 720
|
||
Append = 1400
|
||
NewValue = 1170
|
||
SortType = 1350
|
||
SortOrder = 1410
|
||
GroupBy = 1350
|
||
Filter = 1350
|
||
Or = 1350
|
||
Or = 1350
|
||
Or = 1350
|
||
End
|
||
End
|
||
End
|
||
' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'VIEW',@level1name=N'Oscillator - Crystal'
|
||
GO
|
||
IF NOT EXISTS (SELECT * FROM ::fn_listextendedproperty(N'MS_DiagramPaneCount' , N'SCHEMA',N'dbo', N'VIEW',N'Oscillator - Crystal', NULL,NULL))
|
||
EXEC sys.sp_addextendedproperty @name=N'MS_DiagramPaneCount', @value=1 , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'VIEW',@level1name=N'Oscillator - Crystal'
|
||
GO
|
||
IF NOT EXISTS (SELECT * FROM ::fn_listextendedproperty(N'MS_DiagramPane1' , N'SCHEMA',N'dbo', N'VIEW',N'Oscillator - MEMS', NULL,NULL))
|
||
EXEC sys.sp_addextendedproperty @name=N'MS_DiagramPane1', @value=N'[0E232FF0-B466-11cf-A24F-00AA00A3EFFF, 1.00]
|
||
Begin DesignProperties =
|
||
Begin PaneConfigurations =
|
||
Begin PaneConfiguration = 0
|
||
NumPanes = 4
|
||
Configuration = "(H (1[40] 4[20] 2[20] 3) )"
|
||
End
|
||
Begin PaneConfiguration = 1
|
||
NumPanes = 3
|
||
Configuration = "(H (1 [50] 4 [25] 3))"
|
||
End
|
||
Begin PaneConfiguration = 2
|
||
NumPanes = 3
|
||
Configuration = "(H (1 [50] 2 [25] 3))"
|
||
End
|
||
Begin PaneConfiguration = 3
|
||
NumPanes = 3
|
||
Configuration = "(H (4 [30] 2 [40] 3))"
|
||
End
|
||
Begin PaneConfiguration = 4
|
||
NumPanes = 2
|
||
Configuration = "(H (1 [56] 3))"
|
||
End
|
||
Begin PaneConfiguration = 5
|
||
NumPanes = 2
|
||
Configuration = "(H (2 [66] 3))"
|
||
End
|
||
Begin PaneConfiguration = 6
|
||
NumPanes = 2
|
||
Configuration = "(H (4 [50] 3))"
|
||
End
|
||
Begin PaneConfiguration = 7
|
||
NumPanes = 1
|
||
Configuration = "(V (3))"
|
||
End
|
||
Begin PaneConfiguration = 8
|
||
NumPanes = 3
|
||
Configuration = "(H (1[56] 4[18] 2) )"
|
||
End
|
||
Begin PaneConfiguration = 9
|
||
NumPanes = 2
|
||
Configuration = "(H (1 [75] 4))"
|
||
End
|
||
Begin PaneConfiguration = 10
|
||
NumPanes = 2
|
||
Configuration = "(H (1[66] 2) )"
|
||
End
|
||
Begin PaneConfiguration = 11
|
||
NumPanes = 2
|
||
Configuration = "(H (4 [60] 2))"
|
||
End
|
||
Begin PaneConfiguration = 12
|
||
NumPanes = 1
|
||
Configuration = "(H (1) )"
|
||
End
|
||
Begin PaneConfiguration = 13
|
||
NumPanes = 1
|
||
Configuration = "(V (4))"
|
||
End
|
||
Begin PaneConfiguration = 14
|
||
NumPanes = 1
|
||
Configuration = "(V (2))"
|
||
End
|
||
ActivePaneConfig = 0
|
||
End
|
||
Begin DiagramPane =
|
||
Begin Origin =
|
||
Top = 0
|
||
Left = 0
|
||
End
|
||
Begin Tables =
|
||
Begin Table = "Components"
|
||
Begin Extent =
|
||
Top = 6
|
||
Left = 38
|
||
Bottom = 136
|
||
Right = 279
|
||
End
|
||
DisplayFlags = 280
|
||
TopColumn = 0
|
||
End
|
||
End
|
||
End
|
||
Begin SQLPane =
|
||
End
|
||
Begin DataPane =
|
||
Begin ParameterDefaults = ""
|
||
End
|
||
End
|
||
Begin CriteriaPane =
|
||
Begin ColumnWidths = 11
|
||
Column = 1440
|
||
Alias = 900
|
||
Table = 1170
|
||
Output = 720
|
||
Append = 1400
|
||
NewValue = 1170
|
||
SortType = 1350
|
||
SortOrder = 1410
|
||
GroupBy = 1350
|
||
Filter = 1350
|
||
Or = 1350
|
||
Or = 1350
|
||
Or = 1350
|
||
End
|
||
End
|
||
End
|
||
' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'VIEW',@level1name=N'Oscillator - MEMS'
|
||
GO
|
||
IF NOT EXISTS (SELECT * FROM ::fn_listextendedproperty(N'MS_DiagramPaneCount' , N'SCHEMA',N'dbo', N'VIEW',N'Oscillator - MEMS', NULL,NULL))
|
||
EXEC sys.sp_addextendedproperty @name=N'MS_DiagramPaneCount', @value=1 , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'VIEW',@level1name=N'Oscillator - MEMS'
|
||
GO
|
||
IF NOT EXISTS (SELECT * FROM ::fn_listextendedproperty(N'MS_DiagramPane1' , N'SCHEMA',N'dbo', N'VIEW',N'Oscillator - TCXO', NULL,NULL))
|
||
EXEC sys.sp_addextendedproperty @name=N'MS_DiagramPane1', @value=N'[0E232FF0-B466-11cf-A24F-00AA00A3EFFF, 1.00]
|
||
Begin DesignProperties =
|
||
Begin PaneConfigurations =
|
||
Begin PaneConfiguration = 0
|
||
NumPanes = 4
|
||
Configuration = "(H (1[40] 4[20] 2[20] 3) )"
|
||
End
|
||
Begin PaneConfiguration = 1
|
||
NumPanes = 3
|
||
Configuration = "(H (1 [50] 4 [25] 3))"
|
||
End
|
||
Begin PaneConfiguration = 2
|
||
NumPanes = 3
|
||
Configuration = "(H (1 [50] 2 [25] 3))"
|
||
End
|
||
Begin PaneConfiguration = 3
|
||
NumPanes = 3
|
||
Configuration = "(H (4 [30] 2 [40] 3))"
|
||
End
|
||
Begin PaneConfiguration = 4
|
||
NumPanes = 2
|
||
Configuration = "(H (1 [56] 3))"
|
||
End
|
||
Begin PaneConfiguration = 5
|
||
NumPanes = 2
|
||
Configuration = "(H (2 [66] 3))"
|
||
End
|
||
Begin PaneConfiguration = 6
|
||
NumPanes = 2
|
||
Configuration = "(H (4 [50] 3))"
|
||
End
|
||
Begin PaneConfiguration = 7
|
||
NumPanes = 1
|
||
Configuration = "(V (3))"
|
||
End
|
||
Begin PaneConfiguration = 8
|
||
NumPanes = 3
|
||
Configuration = "(H (1[56] 4[18] 2) )"
|
||
End
|
||
Begin PaneConfiguration = 9
|
||
NumPanes = 2
|
||
Configuration = "(H (1 [75] 4))"
|
||
End
|
||
Begin PaneConfiguration = 10
|
||
NumPanes = 2
|
||
Configuration = "(H (1[66] 2) )"
|
||
End
|
||
Begin PaneConfiguration = 11
|
||
NumPanes = 2
|
||
Configuration = "(H (4 [60] 2))"
|
||
End
|
||
Begin PaneConfiguration = 12
|
||
NumPanes = 1
|
||
Configuration = "(H (1) )"
|
||
End
|
||
Begin PaneConfiguration = 13
|
||
NumPanes = 1
|
||
Configuration = "(V (4))"
|
||
End
|
||
Begin PaneConfiguration = 14
|
||
NumPanes = 1
|
||
Configuration = "(V (2))"
|
||
End
|
||
ActivePaneConfig = 0
|
||
End
|
||
Begin DiagramPane =
|
||
Begin Origin =
|
||
Top = 0
|
||
Left = 0
|
||
End
|
||
Begin Tables =
|
||
Begin Table = "Components"
|
||
Begin Extent =
|
||
Top = 6
|
||
Left = 38
|
||
Bottom = 136
|
||
Right = 279
|
||
End
|
||
DisplayFlags = 280
|
||
TopColumn = 0
|
||
End
|
||
End
|
||
End
|
||
Begin SQLPane =
|
||
End
|
||
Begin DataPane =
|
||
Begin ParameterDefaults = ""
|
||
End
|
||
End
|
||
Begin CriteriaPane =
|
||
Begin ColumnWidths = 11
|
||
Column = 1440
|
||
Alias = 900
|
||
Table = 1170
|
||
Output = 720
|
||
Append = 1400
|
||
NewValue = 1170
|
||
SortType = 1350
|
||
SortOrder = 1410
|
||
GroupBy = 1350
|
||
Filter = 1350
|
||
Or = 1350
|
||
Or = 1350
|
||
Or = 1350
|
||
End
|
||
End
|
||
End
|
||
' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'VIEW',@level1name=N'Oscillator - TCXO'
|
||
GO
|
||
IF NOT EXISTS (SELECT * FROM ::fn_listextendedproperty(N'MS_DiagramPaneCount' , N'SCHEMA',N'dbo', N'VIEW',N'Oscillator - TCXO', NULL,NULL))
|
||
EXEC sys.sp_addextendedproperty @name=N'MS_DiagramPaneCount', @value=1 , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'VIEW',@level1name=N'Oscillator - TCXO'
|
||
GO
|
||
IF NOT EXISTS (SELECT * FROM ::fn_listextendedproperty(N'MS_DiagramPane1' , N'SCHEMA',N'dbo', N'VIEW',N'Oscillator - VCTCXO', NULL,NULL))
|
||
EXEC sys.sp_addextendedproperty @name=N'MS_DiagramPane1', @value=N'[0E232FF0-B466-11cf-A24F-00AA00A3EFFF, 1.00]
|
||
Begin DesignProperties =
|
||
Begin PaneConfigurations =
|
||
Begin PaneConfiguration = 0
|
||
NumPanes = 4
|
||
Configuration = "(H (1[40] 4[20] 2[20] 3) )"
|
||
End
|
||
Begin PaneConfiguration = 1
|
||
NumPanes = 3
|
||
Configuration = "(H (1 [50] 4 [25] 3))"
|
||
End
|
||
Begin PaneConfiguration = 2
|
||
NumPanes = 3
|
||
Configuration = "(H (1 [50] 2 [25] 3))"
|
||
End
|
||
Begin PaneConfiguration = 3
|
||
NumPanes = 3
|
||
Configuration = "(H (4 [30] 2 [40] 3))"
|
||
End
|
||
Begin PaneConfiguration = 4
|
||
NumPanes = 2
|
||
Configuration = "(H (1 [56] 3))"
|
||
End
|
||
Begin PaneConfiguration = 5
|
||
NumPanes = 2
|
||
Configuration = "(H (2 [66] 3))"
|
||
End
|
||
Begin PaneConfiguration = 6
|
||
NumPanes = 2
|
||
Configuration = "(H (4 [50] 3))"
|
||
End
|
||
Begin PaneConfiguration = 7
|
||
NumPanes = 1
|
||
Configuration = "(V (3))"
|
||
End
|
||
Begin PaneConfiguration = 8
|
||
NumPanes = 3
|
||
Configuration = "(H (1[56] 4[18] 2) )"
|
||
End
|
||
Begin PaneConfiguration = 9
|
||
NumPanes = 2
|
||
Configuration = "(H (1 [75] 4))"
|
||
End
|
||
Begin PaneConfiguration = 10
|
||
NumPanes = 2
|
||
Configuration = "(H (1[66] 2) )"
|
||
End
|
||
Begin PaneConfiguration = 11
|
||
NumPanes = 2
|
||
Configuration = "(H (4 [60] 2))"
|
||
End
|
||
Begin PaneConfiguration = 12
|
||
NumPanes = 1
|
||
Configuration = "(H (1) )"
|
||
End
|
||
Begin PaneConfiguration = 13
|
||
NumPanes = 1
|
||
Configuration = "(V (4))"
|
||
End
|
||
Begin PaneConfiguration = 14
|
||
NumPanes = 1
|
||
Configuration = "(V (2))"
|
||
End
|
||
ActivePaneConfig = 0
|
||
End
|
||
Begin DiagramPane =
|
||
Begin Origin =
|
||
Top = 0
|
||
Left = 0
|
||
End
|
||
Begin Tables =
|
||
Begin Table = "Components"
|
||
Begin Extent =
|
||
Top = 6
|
||
Left = 38
|
||
Bottom = 136
|
||
Right = 279
|
||
End
|
||
DisplayFlags = 280
|
||
TopColumn = 0
|
||
End
|
||
End
|
||
End
|
||
Begin SQLPane =
|
||
End
|
||
Begin DataPane =
|
||
Begin ParameterDefaults = ""
|
||
End
|
||
End
|
||
Begin CriteriaPane =
|
||
Begin ColumnWidths = 11
|
||
Column = 1440
|
||
Alias = 900
|
||
Table = 1170
|
||
Output = 720
|
||
Append = 1400
|
||
NewValue = 1170
|
||
SortType = 1350
|
||
SortOrder = 1410
|
||
GroupBy = 1350
|
||
Filter = 1350
|
||
Or = 1350
|
||
Or = 1350
|
||
Or = 1350
|
||
End
|
||
End
|
||
End
|
||
' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'VIEW',@level1name=N'Oscillator - VCTCXO'
|
||
GO
|
||
IF NOT EXISTS (SELECT * FROM ::fn_listextendedproperty(N'MS_DiagramPaneCount' , N'SCHEMA',N'dbo', N'VIEW',N'Oscillator - VCTCXO', NULL,NULL))
|
||
EXEC sys.sp_addextendedproperty @name=N'MS_DiagramPaneCount', @value=1 , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'VIEW',@level1name=N'Oscillator - VCTCXO'
|
||
GO
|
||
IF NOT EXISTS (SELECT * FROM ::fn_listextendedproperty(N'MS_DiagramPane1' , N'SCHEMA',N'dbo', N'VIEW',N'Oscillator - XO', NULL,NULL))
|
||
EXEC sys.sp_addextendedproperty @name=N'MS_DiagramPane1', @value=N'[0E232FF0-B466-11cf-A24F-00AA00A3EFFF, 1.00]
|
||
Begin DesignProperties =
|
||
Begin PaneConfigurations =
|
||
Begin PaneConfiguration = 0
|
||
NumPanes = 4
|
||
Configuration = "(H (1[40] 4[20] 2[20] 3) )"
|
||
End
|
||
Begin PaneConfiguration = 1
|
||
NumPanes = 3
|
||
Configuration = "(H (1 [50] 4 [25] 3))"
|
||
End
|
||
Begin PaneConfiguration = 2
|
||
NumPanes = 3
|
||
Configuration = "(H (1 [50] 2 [25] 3))"
|
||
End
|
||
Begin PaneConfiguration = 3
|
||
NumPanes = 3
|
||
Configuration = "(H (4 [30] 2 [40] 3))"
|
||
End
|
||
Begin PaneConfiguration = 4
|
||
NumPanes = 2
|
||
Configuration = "(H (1 [56] 3))"
|
||
End
|
||
Begin PaneConfiguration = 5
|
||
NumPanes = 2
|
||
Configuration = "(H (2 [66] 3))"
|
||
End
|
||
Begin PaneConfiguration = 6
|
||
NumPanes = 2
|
||
Configuration = "(H (4 [50] 3))"
|
||
End
|
||
Begin PaneConfiguration = 7
|
||
NumPanes = 1
|
||
Configuration = "(V (3))"
|
||
End
|
||
Begin PaneConfiguration = 8
|
||
NumPanes = 3
|
||
Configuration = "(H (1[56] 4[18] 2) )"
|
||
End
|
||
Begin PaneConfiguration = 9
|
||
NumPanes = 2
|
||
Configuration = "(H (1 [75] 4))"
|
||
End
|
||
Begin PaneConfiguration = 10
|
||
NumPanes = 2
|
||
Configuration = "(H (1[66] 2) )"
|
||
End
|
||
Begin PaneConfiguration = 11
|
||
NumPanes = 2
|
||
Configuration = "(H (4 [60] 2))"
|
||
End
|
||
Begin PaneConfiguration = 12
|
||
NumPanes = 1
|
||
Configuration = "(H (1) )"
|
||
End
|
||
Begin PaneConfiguration = 13
|
||
NumPanes = 1
|
||
Configuration = "(V (4))"
|
||
End
|
||
Begin PaneConfiguration = 14
|
||
NumPanes = 1
|
||
Configuration = "(V (2))"
|
||
End
|
||
ActivePaneConfig = 0
|
||
End
|
||
Begin DiagramPane =
|
||
Begin Origin =
|
||
Top = 0
|
||
Left = 0
|
||
End
|
||
Begin Tables =
|
||
Begin Table = "Components"
|
||
Begin Extent =
|
||
Top = 6
|
||
Left = 38
|
||
Bottom = 136
|
||
Right = 279
|
||
End
|
||
DisplayFlags = 280
|
||
TopColumn = 0
|
||
End
|
||
End
|
||
End
|
||
Begin SQLPane =
|
||
End
|
||
Begin DataPane =
|
||
Begin ParameterDefaults = ""
|
||
End
|
||
End
|
||
Begin CriteriaPane =
|
||
Begin ColumnWidths = 11
|
||
Column = 1440
|
||
Alias = 900
|
||
Table = 1170
|
||
Output = 720
|
||
Append = 1400
|
||
NewValue = 1170
|
||
SortType = 1350
|
||
SortOrder = 1410
|
||
GroupBy = 1350
|
||
Filter = 1350
|
||
Or = 1350
|
||
Or = 1350
|
||
Or = 1350
|
||
End
|
||
End
|
||
End
|
||
' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'VIEW',@level1name=N'Oscillator - XO'
|
||
GO
|
||
IF NOT EXISTS (SELECT * FROM ::fn_listextendedproperty(N'MS_DiagramPaneCount' , N'SCHEMA',N'dbo', N'VIEW',N'Oscillator - XO', NULL,NULL))
|
||
EXEC sys.sp_addextendedproperty @name=N'MS_DiagramPaneCount', @value=1 , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'VIEW',@level1name=N'Oscillator - XO'
|
||
GO
|
||
IF NOT EXISTS (SELECT * FROM ::fn_listextendedproperty(N'MS_DiagramPane1' , N'SCHEMA',N'dbo', N'VIEW',N'P-Channel Dual FET Array', NULL,NULL))
|
||
EXEC sys.sp_addextendedproperty @name=N'MS_DiagramPane1', @value=N'[0E232FF0-B466-11cf-A24F-00AA00A3EFFF, 1.00]
|
||
Begin DesignProperties =
|
||
Begin PaneConfigurations =
|
||
Begin PaneConfiguration = 0
|
||
NumPanes = 4
|
||
Configuration = "(H (1[40] 4[20] 2[20] 3) )"
|
||
End
|
||
Begin PaneConfiguration = 1
|
||
NumPanes = 3
|
||
Configuration = "(H (1 [50] 4 [25] 3))"
|
||
End
|
||
Begin PaneConfiguration = 2
|
||
NumPanes = 3
|
||
Configuration = "(H (1 [50] 2 [25] 3))"
|
||
End
|
||
Begin PaneConfiguration = 3
|
||
NumPanes = 3
|
||
Configuration = "(H (4 [30] 2 [40] 3))"
|
||
End
|
||
Begin PaneConfiguration = 4
|
||
NumPanes = 2
|
||
Configuration = "(H (1 [56] 3))"
|
||
End
|
||
Begin PaneConfiguration = 5
|
||
NumPanes = 2
|
||
Configuration = "(H (2 [66] 3))"
|
||
End
|
||
Begin PaneConfiguration = 6
|
||
NumPanes = 2
|
||
Configuration = "(H (4 [50] 3))"
|
||
End
|
||
Begin PaneConfiguration = 7
|
||
NumPanes = 1
|
||
Configuration = "(V (3))"
|
||
End
|
||
Begin PaneConfiguration = 8
|
||
NumPanes = 3
|
||
Configuration = "(H (1[56] 4[18] 2) )"
|
||
End
|
||
Begin PaneConfiguration = 9
|
||
NumPanes = 2
|
||
Configuration = "(H (1 [75] 4))"
|
||
End
|
||
Begin PaneConfiguration = 10
|
||
NumPanes = 2
|
||
Configuration = "(H (1[66] 2) )"
|
||
End
|
||
Begin PaneConfiguration = 11
|
||
NumPanes = 2
|
||
Configuration = "(H (4 [60] 2))"
|
||
End
|
||
Begin PaneConfiguration = 12
|
||
NumPanes = 1
|
||
Configuration = "(H (1) )"
|
||
End
|
||
Begin PaneConfiguration = 13
|
||
NumPanes = 1
|
||
Configuration = "(V (4))"
|
||
End
|
||
Begin PaneConfiguration = 14
|
||
NumPanes = 1
|
||
Configuration = "(V (2))"
|
||
End
|
||
ActivePaneConfig = 0
|
||
End
|
||
Begin DiagramPane =
|
||
Begin Origin =
|
||
Top = 0
|
||
Left = 0
|
||
End
|
||
Begin Tables =
|
||
Begin Table = "Components"
|
||
Begin Extent =
|
||
Top = 6
|
||
Left = 38
|
||
Bottom = 136
|
||
Right = 279
|
||
End
|
||
DisplayFlags = 280
|
||
TopColumn = 0
|
||
End
|
||
End
|
||
End
|
||
Begin SQLPane =
|
||
End
|
||
Begin DataPane =
|
||
Begin ParameterDefaults = ""
|
||
End
|
||
End
|
||
Begin CriteriaPane =
|
||
Begin ColumnWidths = 11
|
||
Column = 1440
|
||
Alias = 900
|
||
Table = 1170
|
||
Output = 720
|
||
Append = 1400
|
||
NewValue = 1170
|
||
SortType = 1350
|
||
SortOrder = 1410
|
||
GroupBy = 1350
|
||
Filter = 1350
|
||
Or = 1350
|
||
Or = 1350
|
||
Or = 1350
|
||
End
|
||
End
|
||
End
|
||
' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'VIEW',@level1name=N'P-Channel Dual FET Array'
|
||
GO
|
||
IF NOT EXISTS (SELECT * FROM ::fn_listextendedproperty(N'MS_DiagramPaneCount' , N'SCHEMA',N'dbo', N'VIEW',N'P-Channel Dual FET Array', NULL,NULL))
|
||
EXEC sys.sp_addextendedproperty @name=N'MS_DiagramPaneCount', @value=1 , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'VIEW',@level1name=N'P-Channel Dual FET Array'
|
||
GO
|
||
IF NOT EXISTS (SELECT * FROM ::fn_listextendedproperty(N'MS_DiagramPane1' , N'SCHEMA',N'dbo', N'VIEW',N'P-Channel FET', NULL,NULL))
|
||
EXEC sys.sp_addextendedproperty @name=N'MS_DiagramPane1', @value=N'[0E232FF0-B466-11cf-A24F-00AA00A3EFFF, 1.00]
|
||
Begin DesignProperties =
|
||
Begin PaneConfigurations =
|
||
Begin PaneConfiguration = 0
|
||
NumPanes = 4
|
||
Configuration = "(H (1[40] 4[20] 2[20] 3) )"
|
||
End
|
||
Begin PaneConfiguration = 1
|
||
NumPanes = 3
|
||
Configuration = "(H (1 [50] 4 [25] 3))"
|
||
End
|
||
Begin PaneConfiguration = 2
|
||
NumPanes = 3
|
||
Configuration = "(H (1 [50] 2 [25] 3))"
|
||
End
|
||
Begin PaneConfiguration = 3
|
||
NumPanes = 3
|
||
Configuration = "(H (4 [30] 2 [40] 3))"
|
||
End
|
||
Begin PaneConfiguration = 4
|
||
NumPanes = 2
|
||
Configuration = "(H (1 [56] 3))"
|
||
End
|
||
Begin PaneConfiguration = 5
|
||
NumPanes = 2
|
||
Configuration = "(H (2 [66] 3))"
|
||
End
|
||
Begin PaneConfiguration = 6
|
||
NumPanes = 2
|
||
Configuration = "(H (4 [50] 3))"
|
||
End
|
||
Begin PaneConfiguration = 7
|
||
NumPanes = 1
|
||
Configuration = "(V (3))"
|
||
End
|
||
Begin PaneConfiguration = 8
|
||
NumPanes = 3
|
||
Configuration = "(H (1[56] 4[18] 2) )"
|
||
End
|
||
Begin PaneConfiguration = 9
|
||
NumPanes = 2
|
||
Configuration = "(H (1 [75] 4))"
|
||
End
|
||
Begin PaneConfiguration = 10
|
||
NumPanes = 2
|
||
Configuration = "(H (1[66] 2) )"
|
||
End
|
||
Begin PaneConfiguration = 11
|
||
NumPanes = 2
|
||
Configuration = "(H (4 [60] 2))"
|
||
End
|
||
Begin PaneConfiguration = 12
|
||
NumPanes = 1
|
||
Configuration = "(H (1) )"
|
||
End
|
||
Begin PaneConfiguration = 13
|
||
NumPanes = 1
|
||
Configuration = "(V (4))"
|
||
End
|
||
Begin PaneConfiguration = 14
|
||
NumPanes = 1
|
||
Configuration = "(V (2))"
|
||
End
|
||
ActivePaneConfig = 0
|
||
End
|
||
Begin DiagramPane =
|
||
Begin Origin =
|
||
Top = 0
|
||
Left = 0
|
||
End
|
||
Begin Tables =
|
||
Begin Table = "Components"
|
||
Begin Extent =
|
||
Top = 6
|
||
Left = 38
|
||
Bottom = 136
|
||
Right = 279
|
||
End
|
||
DisplayFlags = 280
|
||
TopColumn = 0
|
||
End
|
||
End
|
||
End
|
||
Begin SQLPane =
|
||
End
|
||
Begin DataPane =
|
||
Begin ParameterDefaults = ""
|
||
End
|
||
End
|
||
Begin CriteriaPane =
|
||
Begin ColumnWidths = 11
|
||
Column = 1440
|
||
Alias = 900
|
||
Table = 1170
|
||
Output = 720
|
||
Append = 1400
|
||
NewValue = 1170
|
||
SortType = 1350
|
||
SortOrder = 1410
|
||
GroupBy = 1350
|
||
Filter = 1350
|
||
Or = 1350
|
||
Or = 1350
|
||
Or = 1350
|
||
End
|
||
End
|
||
End
|
||
' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'VIEW',@level1name=N'P-Channel FET'
|
||
GO
|
||
IF NOT EXISTS (SELECT * FROM ::fn_listextendedproperty(N'MS_DiagramPaneCount' , N'SCHEMA',N'dbo', N'VIEW',N'P-Channel FET', NULL,NULL))
|
||
EXEC sys.sp_addextendedproperty @name=N'MS_DiagramPaneCount', @value=1 , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'VIEW',@level1name=N'P-Channel FET'
|
||
GO
|
||
IF NOT EXISTS (SELECT * FROM ::fn_listextendedproperty(N'MS_DiagramPane1' , N'SCHEMA',N'dbo', N'VIEW',N'Resistor', NULL,NULL))
|
||
EXEC sys.sp_addextendedproperty @name=N'MS_DiagramPane1', @value=N'[0E232FF0-B466-11cf-A24F-00AA00A3EFFF, 1.00]
|
||
Begin DesignProperties =
|
||
Begin PaneConfigurations =
|
||
Begin PaneConfiguration = 0
|
||
NumPanes = 4
|
||
Configuration = "(H (1[23] 4[45] 2[14] 3) )"
|
||
End
|
||
Begin PaneConfiguration = 1
|
||
NumPanes = 3
|
||
Configuration = "(H (1 [50] 4 [25] 3))"
|
||
End
|
||
Begin PaneConfiguration = 2
|
||
NumPanes = 3
|
||
Configuration = "(H (1 [50] 2 [25] 3))"
|
||
End
|
||
Begin PaneConfiguration = 3
|
||
NumPanes = 3
|
||
Configuration = "(H (4 [30] 2 [40] 3))"
|
||
End
|
||
Begin PaneConfiguration = 4
|
||
NumPanes = 2
|
||
Configuration = "(H (1 [56] 3))"
|
||
End
|
||
Begin PaneConfiguration = 5
|
||
NumPanes = 2
|
||
Configuration = "(H (2 [66] 3))"
|
||
End
|
||
Begin PaneConfiguration = 6
|
||
NumPanes = 2
|
||
Configuration = "(H (4 [50] 3))"
|
||
End
|
||
Begin PaneConfiguration = 7
|
||
NumPanes = 1
|
||
Configuration = "(V (3))"
|
||
End
|
||
Begin PaneConfiguration = 8
|
||
NumPanes = 3
|
||
Configuration = "(H (1[56] 4[18] 2) )"
|
||
End
|
||
Begin PaneConfiguration = 9
|
||
NumPanes = 2
|
||
Configuration = "(H (1 [75] 4))"
|
||
End
|
||
Begin PaneConfiguration = 10
|
||
NumPanes = 2
|
||
Configuration = "(H (1[66] 2) )"
|
||
End
|
||
Begin PaneConfiguration = 11
|
||
NumPanes = 2
|
||
Configuration = "(H (4 [60] 2))"
|
||
End
|
||
Begin PaneConfiguration = 12
|
||
NumPanes = 1
|
||
Configuration = "(H (1) )"
|
||
End
|
||
Begin PaneConfiguration = 13
|
||
NumPanes = 1
|
||
Configuration = "(V (4))"
|
||
End
|
||
Begin PaneConfiguration = 14
|
||
NumPanes = 1
|
||
Configuration = "(V (2))"
|
||
End
|
||
ActivePaneConfig = 0
|
||
End
|
||
Begin DiagramPane =
|
||
Begin Origin =
|
||
Top = 0
|
||
Left = 0
|
||
End
|
||
Begin Tables =
|
||
Begin Table = "Components"
|
||
Begin Extent =
|
||
Top = 6
|
||
Left = 38
|
||
Bottom = 136
|
||
Right = 279
|
||
End
|
||
DisplayFlags = 280
|
||
TopColumn = 0
|
||
End
|
||
End
|
||
End
|
||
Begin SQLPane =
|
||
End
|
||
Begin DataPane =
|
||
Begin ParameterDefaults = ""
|
||
End
|
||
End
|
||
Begin CriteriaPane =
|
||
Begin ColumnWidths = 11
|
||
Column = 1440
|
||
Alias = 2130
|
||
Table = 1170
|
||
Output = 720
|
||
Append = 1400
|
||
NewValue = 1170
|
||
SortType = 1350
|
||
SortOrder = 1410
|
||
GroupBy = 1350
|
||
Filter = 1350
|
||
Or = 1350
|
||
Or = 1350
|
||
Or = 1350
|
||
End
|
||
End
|
||
End
|
||
' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'VIEW',@level1name=N'Resistor'
|
||
GO
|
||
IF NOT EXISTS (SELECT * FROM ::fn_listextendedproperty(N'MS_DiagramPaneCount' , N'SCHEMA',N'dbo', N'VIEW',N'Resistor', NULL,NULL))
|
||
EXEC sys.sp_addextendedproperty @name=N'MS_DiagramPaneCount', @value=1 , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'VIEW',@level1name=N'Resistor'
|
||
GO
|
||
IF NOT EXISTS (SELECT * FROM ::fn_listextendedproperty(N'MS_DiagramPane1' , N'SCHEMA',N'dbo', N'VIEW',N'Resistor Potentiometer', NULL,NULL))
|
||
EXEC sys.sp_addextendedproperty @name=N'MS_DiagramPane1', @value=N'[0E232FF0-B466-11cf-A24F-00AA00A3EFFF, 1.00]
|
||
Begin DesignProperties =
|
||
Begin PaneConfigurations =
|
||
Begin PaneConfiguration = 0
|
||
NumPanes = 4
|
||
Configuration = "(H (1[40] 4[20] 2[20] 3) )"
|
||
End
|
||
Begin PaneConfiguration = 1
|
||
NumPanes = 3
|
||
Configuration = "(H (1 [50] 4 [25] 3))"
|
||
End
|
||
Begin PaneConfiguration = 2
|
||
NumPanes = 3
|
||
Configuration = "(H (1 [50] 2 [25] 3))"
|
||
End
|
||
Begin PaneConfiguration = 3
|
||
NumPanes = 3
|
||
Configuration = "(H (4 [30] 2 [40] 3))"
|
||
End
|
||
Begin PaneConfiguration = 4
|
||
NumPanes = 2
|
||
Configuration = "(H (1 [56] 3))"
|
||
End
|
||
Begin PaneConfiguration = 5
|
||
NumPanes = 2
|
||
Configuration = "(H (2 [66] 3))"
|
||
End
|
||
Begin PaneConfiguration = 6
|
||
NumPanes = 2
|
||
Configuration = "(H (4 [50] 3))"
|
||
End
|
||
Begin PaneConfiguration = 7
|
||
NumPanes = 1
|
||
Configuration = "(V (3))"
|
||
End
|
||
Begin PaneConfiguration = 8
|
||
NumPanes = 3
|
||
Configuration = "(H (1[56] 4[18] 2) )"
|
||
End
|
||
Begin PaneConfiguration = 9
|
||
NumPanes = 2
|
||
Configuration = "(H (1 [75] 4))"
|
||
End
|
||
Begin PaneConfiguration = 10
|
||
NumPanes = 2
|
||
Configuration = "(H (1[66] 2) )"
|
||
End
|
||
Begin PaneConfiguration = 11
|
||
NumPanes = 2
|
||
Configuration = "(H (4 [60] 2))"
|
||
End
|
||
Begin PaneConfiguration = 12
|
||
NumPanes = 1
|
||
Configuration = "(H (1) )"
|
||
End
|
||
Begin PaneConfiguration = 13
|
||
NumPanes = 1
|
||
Configuration = "(V (4))"
|
||
End
|
||
Begin PaneConfiguration = 14
|
||
NumPanes = 1
|
||
Configuration = "(V (2))"
|
||
End
|
||
ActivePaneConfig = 0
|
||
End
|
||
Begin DiagramPane =
|
||
Begin Origin =
|
||
Top = 0
|
||
Left = 0
|
||
End
|
||
Begin Tables =
|
||
Begin Table = "Components"
|
||
Begin Extent =
|
||
Top = 6
|
||
Left = 38
|
||
Bottom = 319
|
||
Right = 356
|
||
End
|
||
DisplayFlags = 280
|
||
TopColumn = 2
|
||
End
|
||
End
|
||
End
|
||
Begin SQLPane =
|
||
End
|
||
Begin DataPane =
|
||
Begin ParameterDefaults = ""
|
||
End
|
||
End
|
||
Begin CriteriaPane =
|
||
Begin ColumnWidths = 11
|
||
Column = 2925
|
||
Alias = 2610
|
||
Table = 1170
|
||
Output = 720
|
||
Append = 1400
|
||
NewValue = 1170
|
||
SortType = 1350
|
||
SortOrder = 1410
|
||
GroupBy = 1350
|
||
Filter = 1350
|
||
Or = 1350
|
||
Or = 1350
|
||
Or = 1350
|
||
End
|
||
End
|
||
End
|
||
' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'VIEW',@level1name=N'Resistor Potentiometer'
|
||
GO
|
||
IF NOT EXISTS (SELECT * FROM ::fn_listextendedproperty(N'MS_DiagramPaneCount' , N'SCHEMA',N'dbo', N'VIEW',N'Resistor Potentiometer', NULL,NULL))
|
||
EXEC sys.sp_addextendedproperty @name=N'MS_DiagramPaneCount', @value=1 , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'VIEW',@level1name=N'Resistor Potentiometer'
|
||
GO
|
||
IF NOT EXISTS (SELECT * FROM ::fn_listextendedproperty(N'MS_DiagramPane1' , N'SCHEMA',N'dbo', N'VIEW',N'RF Attenuator', NULL,NULL))
|
||
EXEC sys.sp_addextendedproperty @name=N'MS_DiagramPane1', @value=N'[0E232FF0-B466-11cf-A24F-00AA00A3EFFF, 1.00]
|
||
Begin DesignProperties =
|
||
Begin PaneConfigurations =
|
||
Begin PaneConfiguration = 0
|
||
NumPanes = 4
|
||
Configuration = "(H (1[40] 4[20] 2[20] 3) )"
|
||
End
|
||
Begin PaneConfiguration = 1
|
||
NumPanes = 3
|
||
Configuration = "(H (1 [50] 4 [25] 3))"
|
||
End
|
||
Begin PaneConfiguration = 2
|
||
NumPanes = 3
|
||
Configuration = "(H (1 [50] 2 [25] 3))"
|
||
End
|
||
Begin PaneConfiguration = 3
|
||
NumPanes = 3
|
||
Configuration = "(H (4 [30] 2 [40] 3))"
|
||
End
|
||
Begin PaneConfiguration = 4
|
||
NumPanes = 2
|
||
Configuration = "(H (1 [56] 3))"
|
||
End
|
||
Begin PaneConfiguration = 5
|
||
NumPanes = 2
|
||
Configuration = "(H (2 [66] 3))"
|
||
End
|
||
Begin PaneConfiguration = 6
|
||
NumPanes = 2
|
||
Configuration = "(H (4 [50] 3))"
|
||
End
|
||
Begin PaneConfiguration = 7
|
||
NumPanes = 1
|
||
Configuration = "(V (3))"
|
||
End
|
||
Begin PaneConfiguration = 8
|
||
NumPanes = 3
|
||
Configuration = "(H (1[56] 4[18] 2) )"
|
||
End
|
||
Begin PaneConfiguration = 9
|
||
NumPanes = 2
|
||
Configuration = "(H (1 [75] 4))"
|
||
End
|
||
Begin PaneConfiguration = 10
|
||
NumPanes = 2
|
||
Configuration = "(H (1[66] 2) )"
|
||
End
|
||
Begin PaneConfiguration = 11
|
||
NumPanes = 2
|
||
Configuration = "(H (4 [60] 2))"
|
||
End
|
||
Begin PaneConfiguration = 12
|
||
NumPanes = 1
|
||
Configuration = "(H (1) )"
|
||
End
|
||
Begin PaneConfiguration = 13
|
||
NumPanes = 1
|
||
Configuration = "(V (4))"
|
||
End
|
||
Begin PaneConfiguration = 14
|
||
NumPanes = 1
|
||
Configuration = "(V (2))"
|
||
End
|
||
ActivePaneConfig = 0
|
||
End
|
||
Begin DiagramPane =
|
||
Begin Origin =
|
||
Top = 0
|
||
Left = 0
|
||
End
|
||
Begin Tables =
|
||
Begin Table = "Components"
|
||
Begin Extent =
|
||
Top = 6
|
||
Left = 38
|
||
Bottom = 136
|
||
Right = 279
|
||
End
|
||
DisplayFlags = 280
|
||
TopColumn = 0
|
||
End
|
||
End
|
||
End
|
||
Begin SQLPane =
|
||
End
|
||
Begin DataPane =
|
||
Begin ParameterDefaults = ""
|
||
End
|
||
End
|
||
Begin CriteriaPane =
|
||
Begin ColumnWidths = 11
|
||
Column = 1440
|
||
Alias = 900
|
||
Table = 1170
|
||
Output = 720
|
||
Append = 1400
|
||
NewValue = 1170
|
||
SortType = 1350
|
||
SortOrder = 1410
|
||
GroupBy = 1350
|
||
Filter = 1350
|
||
Or = 1350
|
||
Or = 1350
|
||
Or = 1350
|
||
End
|
||
End
|
||
End
|
||
' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'VIEW',@level1name=N'RF Attenuator'
|
||
GO
|
||
IF NOT EXISTS (SELECT * FROM ::fn_listextendedproperty(N'MS_DiagramPaneCount' , N'SCHEMA',N'dbo', N'VIEW',N'RF Attenuator', NULL,NULL))
|
||
EXEC sys.sp_addextendedproperty @name=N'MS_DiagramPaneCount', @value=1 , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'VIEW',@level1name=N'RF Attenuator'
|
||
GO
|
||
IF NOT EXISTS (SELECT * FROM ::fn_listextendedproperty(N'MS_DiagramPane1' , N'SCHEMA',N'dbo', N'VIEW',N'RF Detector', NULL,NULL))
|
||
EXEC sys.sp_addextendedproperty @name=N'MS_DiagramPane1', @value=N'[0E232FF0-B466-11cf-A24F-00AA00A3EFFF, 1.00]
|
||
Begin DesignProperties =
|
||
Begin PaneConfigurations =
|
||
Begin PaneConfiguration = 0
|
||
NumPanes = 4
|
||
Configuration = "(H (1[40] 4[20] 2[20] 3) )"
|
||
End
|
||
Begin PaneConfiguration = 1
|
||
NumPanes = 3
|
||
Configuration = "(H (1 [50] 4 [25] 3))"
|
||
End
|
||
Begin PaneConfiguration = 2
|
||
NumPanes = 3
|
||
Configuration = "(H (1 [50] 2 [25] 3))"
|
||
End
|
||
Begin PaneConfiguration = 3
|
||
NumPanes = 3
|
||
Configuration = "(H (4 [30] 2 [40] 3))"
|
||
End
|
||
Begin PaneConfiguration = 4
|
||
NumPanes = 2
|
||
Configuration = "(H (1 [56] 3))"
|
||
End
|
||
Begin PaneConfiguration = 5
|
||
NumPanes = 2
|
||
Configuration = "(H (2 [66] 3))"
|
||
End
|
||
Begin PaneConfiguration = 6
|
||
NumPanes = 2
|
||
Configuration = "(H (4 [50] 3))"
|
||
End
|
||
Begin PaneConfiguration = 7
|
||
NumPanes = 1
|
||
Configuration = "(V (3))"
|
||
End
|
||
Begin PaneConfiguration = 8
|
||
NumPanes = 3
|
||
Configuration = "(H (1[56] 4[18] 2) )"
|
||
End
|
||
Begin PaneConfiguration = 9
|
||
NumPanes = 2
|
||
Configuration = "(H (1 [75] 4))"
|
||
End
|
||
Begin PaneConfiguration = 10
|
||
NumPanes = 2
|
||
Configuration = "(H (1[66] 2) )"
|
||
End
|
||
Begin PaneConfiguration = 11
|
||
NumPanes = 2
|
||
Configuration = "(H (4 [60] 2))"
|
||
End
|
||
Begin PaneConfiguration = 12
|
||
NumPanes = 1
|
||
Configuration = "(H (1) )"
|
||
End
|
||
Begin PaneConfiguration = 13
|
||
NumPanes = 1
|
||
Configuration = "(V (4))"
|
||
End
|
||
Begin PaneConfiguration = 14
|
||
NumPanes = 1
|
||
Configuration = "(V (2))"
|
||
End
|
||
ActivePaneConfig = 0
|
||
End
|
||
Begin DiagramPane =
|
||
Begin Origin =
|
||
Top = 0
|
||
Left = 0
|
||
End
|
||
Begin Tables =
|
||
Begin Table = "Components"
|
||
Begin Extent =
|
||
Top = 6
|
||
Left = 38
|
||
Bottom = 136
|
||
Right = 279
|
||
End
|
||
DisplayFlags = 280
|
||
TopColumn = 0
|
||
End
|
||
End
|
||
End
|
||
Begin SQLPane =
|
||
End
|
||
Begin DataPane =
|
||
Begin ParameterDefaults = ""
|
||
End
|
||
End
|
||
Begin CriteriaPane =
|
||
Begin ColumnWidths = 11
|
||
Column = 1440
|
||
Alias = 900
|
||
Table = 1170
|
||
Output = 720
|
||
Append = 1400
|
||
NewValue = 1170
|
||
SortType = 1350
|
||
SortOrder = 1410
|
||
GroupBy = 1350
|
||
Filter = 1350
|
||
Or = 1350
|
||
Or = 1350
|
||
Or = 1350
|
||
End
|
||
End
|
||
End
|
||
' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'VIEW',@level1name=N'RF Detector'
|
||
GO
|
||
IF NOT EXISTS (SELECT * FROM ::fn_listextendedproperty(N'MS_DiagramPaneCount' , N'SCHEMA',N'dbo', N'VIEW',N'RF Detector', NULL,NULL))
|
||
EXEC sys.sp_addextendedproperty @name=N'MS_DiagramPaneCount', @value=1 , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'VIEW',@level1name=N'RF Detector'
|
||
GO
|
||
IF NOT EXISTS (SELECT * FROM ::fn_listextendedproperty(N'MS_DiagramPane1' , N'SCHEMA',N'dbo', N'VIEW',N'RF Switch', NULL,NULL))
|
||
EXEC sys.sp_addextendedproperty @name=N'MS_DiagramPane1', @value=N'[0E232FF0-B466-11cf-A24F-00AA00A3EFFF, 1.00]
|
||
Begin DesignProperties =
|
||
Begin PaneConfigurations =
|
||
Begin PaneConfiguration = 0
|
||
NumPanes = 4
|
||
Configuration = "(H (1[40] 4[20] 2[20] 3) )"
|
||
End
|
||
Begin PaneConfiguration = 1
|
||
NumPanes = 3
|
||
Configuration = "(H (1 [50] 4 [25] 3))"
|
||
End
|
||
Begin PaneConfiguration = 2
|
||
NumPanes = 3
|
||
Configuration = "(H (1 [50] 2 [25] 3))"
|
||
End
|
||
Begin PaneConfiguration = 3
|
||
NumPanes = 3
|
||
Configuration = "(H (4 [30] 2 [40] 3))"
|
||
End
|
||
Begin PaneConfiguration = 4
|
||
NumPanes = 2
|
||
Configuration = "(H (1 [56] 3))"
|
||
End
|
||
Begin PaneConfiguration = 5
|
||
NumPanes = 2
|
||
Configuration = "(H (2 [66] 3))"
|
||
End
|
||
Begin PaneConfiguration = 6
|
||
NumPanes = 2
|
||
Configuration = "(H (4 [50] 3))"
|
||
End
|
||
Begin PaneConfiguration = 7
|
||
NumPanes = 1
|
||
Configuration = "(V (3))"
|
||
End
|
||
Begin PaneConfiguration = 8
|
||
NumPanes = 3
|
||
Configuration = "(H (1[56] 4[18] 2) )"
|
||
End
|
||
Begin PaneConfiguration = 9
|
||
NumPanes = 2
|
||
Configuration = "(H (1 [75] 4))"
|
||
End
|
||
Begin PaneConfiguration = 10
|
||
NumPanes = 2
|
||
Configuration = "(H (1[66] 2) )"
|
||
End
|
||
Begin PaneConfiguration = 11
|
||
NumPanes = 2
|
||
Configuration = "(H (4 [60] 2))"
|
||
End
|
||
Begin PaneConfiguration = 12
|
||
NumPanes = 1
|
||
Configuration = "(H (1) )"
|
||
End
|
||
Begin PaneConfiguration = 13
|
||
NumPanes = 1
|
||
Configuration = "(V (4))"
|
||
End
|
||
Begin PaneConfiguration = 14
|
||
NumPanes = 1
|
||
Configuration = "(V (2))"
|
||
End
|
||
ActivePaneConfig = 0
|
||
End
|
||
Begin DiagramPane =
|
||
Begin Origin =
|
||
Top = 0
|
||
Left = 0
|
||
End
|
||
Begin Tables =
|
||
Begin Table = "Components"
|
||
Begin Extent =
|
||
Top = 6
|
||
Left = 38
|
||
Bottom = 498
|
||
Right = 279
|
||
End
|
||
DisplayFlags = 280
|
||
TopColumn = 37
|
||
End
|
||
End
|
||
End
|
||
Begin SQLPane =
|
||
End
|
||
Begin DataPane =
|
||
Begin ParameterDefaults = ""
|
||
End
|
||
End
|
||
Begin CriteriaPane =
|
||
Begin ColumnWidths = 11
|
||
Column = 2130
|
||
Alias = 900
|
||
Table = 1170
|
||
Output = 720
|
||
Append = 1400
|
||
NewValue = 1170
|
||
SortType = 1350
|
||
SortOrder = 1410
|
||
GroupBy = 1350
|
||
Filter = 1350
|
||
Or = 1350
|
||
Or = 1350
|
||
Or = 1350
|
||
End
|
||
End
|
||
End
|
||
' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'VIEW',@level1name=N'RF Switch'
|
||
GO
|
||
IF NOT EXISTS (SELECT * FROM ::fn_listextendedproperty(N'MS_DiagramPaneCount' , N'SCHEMA',N'dbo', N'VIEW',N'RF Switch', NULL,NULL))
|
||
EXEC sys.sp_addextendedproperty @name=N'MS_DiagramPaneCount', @value=1 , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'VIEW',@level1name=N'RF Switch'
|
||
GO
|
||
IF NOT EXISTS (SELECT * FROM ::fn_listextendedproperty(N'MS_DiagramPane1' , N'SCHEMA',N'dbo', N'VIEW',N'Voltage Reference', NULL,NULL))
|
||
EXEC sys.sp_addextendedproperty @name=N'MS_DiagramPane1', @value=N'[0E232FF0-B466-11cf-A24F-00AA00A3EFFF, 1.00]
|
||
Begin DesignProperties =
|
||
Begin PaneConfigurations =
|
||
Begin PaneConfiguration = 0
|
||
NumPanes = 4
|
||
Configuration = "(H (1[40] 4[20] 2[20] 3) )"
|
||
End
|
||
Begin PaneConfiguration = 1
|
||
NumPanes = 3
|
||
Configuration = "(H (1 [50] 4 [25] 3))"
|
||
End
|
||
Begin PaneConfiguration = 2
|
||
NumPanes = 3
|
||
Configuration = "(H (1 [50] 2 [25] 3))"
|
||
End
|
||
Begin PaneConfiguration = 3
|
||
NumPanes = 3
|
||
Configuration = "(H (4 [30] 2 [40] 3))"
|
||
End
|
||
Begin PaneConfiguration = 4
|
||
NumPanes = 2
|
||
Configuration = "(H (1 [56] 3))"
|
||
End
|
||
Begin PaneConfiguration = 5
|
||
NumPanes = 2
|
||
Configuration = "(H (2 [66] 3))"
|
||
End
|
||
Begin PaneConfiguration = 6
|
||
NumPanes = 2
|
||
Configuration = "(H (4 [50] 3))"
|
||
End
|
||
Begin PaneConfiguration = 7
|
||
NumPanes = 1
|
||
Configuration = "(V (3))"
|
||
End
|
||
Begin PaneConfiguration = 8
|
||
NumPanes = 3
|
||
Configuration = "(H (1[56] 4[18] 2) )"
|
||
End
|
||
Begin PaneConfiguration = 9
|
||
NumPanes = 2
|
||
Configuration = "(H (1 [75] 4))"
|
||
End
|
||
Begin PaneConfiguration = 10
|
||
NumPanes = 2
|
||
Configuration = "(H (1[66] 2) )"
|
||
End
|
||
Begin PaneConfiguration = 11
|
||
NumPanes = 2
|
||
Configuration = "(H (4 [60] 2))"
|
||
End
|
||
Begin PaneConfiguration = 12
|
||
NumPanes = 1
|
||
Configuration = "(H (1) )"
|
||
End
|
||
Begin PaneConfiguration = 13
|
||
NumPanes = 1
|
||
Configuration = "(V (4))"
|
||
End
|
||
Begin PaneConfiguration = 14
|
||
NumPanes = 1
|
||
Configuration = "(V (2))"
|
||
End
|
||
ActivePaneConfig = 0
|
||
End
|
||
Begin DiagramPane =
|
||
Begin Origin =
|
||
Top = 0
|
||
Left = 0
|
||
End
|
||
Begin Tables =
|
||
Begin Table = "Components"
|
||
Begin Extent =
|
||
Top = 6
|
||
Left = 38
|
||
Bottom = 136
|
||
Right = 279
|
||
End
|
||
DisplayFlags = 280
|
||
TopColumn = 0
|
||
End
|
||
End
|
||
End
|
||
Begin SQLPane =
|
||
End
|
||
Begin DataPane =
|
||
Begin ParameterDefaults = ""
|
||
End
|
||
End
|
||
Begin CriteriaPane =
|
||
Begin ColumnWidths = 11
|
||
Column = 1440
|
||
Alias = 900
|
||
Table = 1170
|
||
Output = 720
|
||
Append = 1400
|
||
NewValue = 1170
|
||
SortType = 1350
|
||
SortOrder = 1410
|
||
GroupBy = 1350
|
||
Filter = 1350
|
||
Or = 1350
|
||
Or = 1350
|
||
Or = 1350
|
||
End
|
||
End
|
||
End
|
||
' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'VIEW',@level1name=N'Voltage Reference'
|
||
GO
|
||
IF NOT EXISTS (SELECT * FROM ::fn_listextendedproperty(N'MS_DiagramPaneCount' , N'SCHEMA',N'dbo', N'VIEW',N'Voltage Reference', NULL,NULL))
|
||
EXEC sys.sp_addextendedproperty @name=N'MS_DiagramPaneCount', @value=1 , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'VIEW',@level1name=N'Voltage Reference'
|
||
GO
|
||
IF NOT EXISTS (SELECT * FROM ::fn_listextendedproperty(N'MS_DiagramPane1' , N'SCHEMA',N'dbo', N'VIEW',N'Voltage Regulator - Linear', NULL,NULL))
|
||
EXEC sys.sp_addextendedproperty @name=N'MS_DiagramPane1', @value=N'[0E232FF0-B466-11cf-A24F-00AA00A3EFFF, 1.00]
|
||
Begin DesignProperties =
|
||
Begin PaneConfigurations =
|
||
Begin PaneConfiguration = 0
|
||
NumPanes = 4
|
||
Configuration = "(H (1[40] 4[20] 2[20] 3) )"
|
||
End
|
||
Begin PaneConfiguration = 1
|
||
NumPanes = 3
|
||
Configuration = "(H (1 [50] 4 [25] 3))"
|
||
End
|
||
Begin PaneConfiguration = 2
|
||
NumPanes = 3
|
||
Configuration = "(H (1 [50] 2 [25] 3))"
|
||
End
|
||
Begin PaneConfiguration = 3
|
||
NumPanes = 3
|
||
Configuration = "(H (4 [30] 2 [40] 3))"
|
||
End
|
||
Begin PaneConfiguration = 4
|
||
NumPanes = 2
|
||
Configuration = "(H (1 [56] 3))"
|
||
End
|
||
Begin PaneConfiguration = 5
|
||
NumPanes = 2
|
||
Configuration = "(H (2 [66] 3))"
|
||
End
|
||
Begin PaneConfiguration = 6
|
||
NumPanes = 2
|
||
Configuration = "(H (4 [50] 3))"
|
||
End
|
||
Begin PaneConfiguration = 7
|
||
NumPanes = 1
|
||
Configuration = "(V (3))"
|
||
End
|
||
Begin PaneConfiguration = 8
|
||
NumPanes = 3
|
||
Configuration = "(H (1[56] 4[18] 2) )"
|
||
End
|
||
Begin PaneConfiguration = 9
|
||
NumPanes = 2
|
||
Configuration = "(H (1 [75] 4))"
|
||
End
|
||
Begin PaneConfiguration = 10
|
||
NumPanes = 2
|
||
Configuration = "(H (1[66] 2) )"
|
||
End
|
||
Begin PaneConfiguration = 11
|
||
NumPanes = 2
|
||
Configuration = "(H (4 [60] 2))"
|
||
End
|
||
Begin PaneConfiguration = 12
|
||
NumPanes = 1
|
||
Configuration = "(H (1) )"
|
||
End
|
||
Begin PaneConfiguration = 13
|
||
NumPanes = 1
|
||
Configuration = "(V (4))"
|
||
End
|
||
Begin PaneConfiguration = 14
|
||
NumPanes = 1
|
||
Configuration = "(V (2))"
|
||
End
|
||
ActivePaneConfig = 0
|
||
End
|
||
Begin DiagramPane =
|
||
Begin Origin =
|
||
Top = 0
|
||
Left = 0
|
||
End
|
||
Begin Tables =
|
||
Begin Table = "Components"
|
||
Begin Extent =
|
||
Top = 6
|
||
Left = 38
|
||
Bottom = 136
|
||
Right = 279
|
||
End
|
||
DisplayFlags = 280
|
||
TopColumn = 0
|
||
End
|
||
End
|
||
End
|
||
Begin SQLPane =
|
||
End
|
||
Begin DataPane =
|
||
Begin ParameterDefaults = ""
|
||
End
|
||
End
|
||
Begin CriteriaPane =
|
||
Begin ColumnWidths = 11
|
||
Column = 1440
|
||
Alias = 900
|
||
Table = 1170
|
||
Output = 720
|
||
Append = 1400
|
||
NewValue = 1170
|
||
SortType = 1350
|
||
SortOrder = 1410
|
||
GroupBy = 1350
|
||
Filter = 1350
|
||
Or = 1350
|
||
Or = 1350
|
||
Or = 1350
|
||
End
|
||
End
|
||
End
|
||
' , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'VIEW',@level1name=N'Voltage Regulator - Linear'
|
||
GO
|
||
IF NOT EXISTS (SELECT * FROM ::fn_listextendedproperty(N'MS_DiagramPaneCount' , N'SCHEMA',N'dbo', N'VIEW',N'Voltage Regulator - Linear', NULL,NULL))
|
||
EXEC sys.sp_addextendedproperty @name=N'MS_DiagramPaneCount', @value=1 , @level0type=N'SCHEMA',@level0name=N'dbo', @level1type=N'VIEW',@level1name=N'Voltage Regulator - Linear'
|
||
GO
|