Forum Replies Created

Viewing 6 posts - 1 through 6 (of 6 total)

  • RE: create a table on a 2nd SQL server via linked server

    i'm using this script :

    select * into LinkedServer.[DB_Name].[dbo].[Table_Name] FROM Server2.[DB2_Name].[dbo].Table2_Name

    but give this error:

    Msg 117, Level 15, State 1, Line 1

    The object name 'LinkerserverName.DB_Name.dbo.Table_Name' contains more than the maximum number of...

  • RE: FingerPrint Report

    CREATE TABLE [dbo].[Transaction](

    [TransactionID] [uniqueidentifier] NOT NULL,

    [EmployeeID] [bigint] NOT NULL,

    [DateTime] [datetime] NOT NULL,

    [Type] [nvarchar](max) NOT NULL,

    [OrderType] [nvarchar](2) NULL,

    [OrderNo] [nvarchar](50) NULL,

    [OrderDate] [datetime] NULL,

    [LocationID] [int] NOT NULL,

    [IsProcessed] [bit] NOT NULL,

    [Manager] [nvarchar](max) NULL,

    [CreatedOn] [datetime]...

  • RE: FingerPrint Report

    I attach sample file output file but i don't know where ,

    You couldn't create SP from description of table which writes before ???

  • RE: FingerPrint Report

    I uploaded as attachment file ,image from used table and output of it as text file.

  • RE: FingerPrint Report

    Table name is "Transaction"

    SELECT [TransactionID]

    ,[EmployeeID]

    ,[DateTime]

    ,[Type]

    ,[OrderType]

    ...

  • RE: FingerPrint Report

    That is what i do ,but i need to create fix SP ,give it Time ,from date and after date the give me the Average,

    By the way,The table have a...

Viewing 6 posts - 1 through 6 (of 6 total)