Viewing 6 posts - 1 through 6 (of 6 total)
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...
October 13, 2016 at 12:16 am
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]...
October 21, 2015 at 3:46 am
I attach sample file output file but i don't know where ,
You couldn't create SP from description of table which writes before ???
October 19, 2015 at 5:42 am
I uploaded as attachment file ,image from used table and output of it as text file.
October 19, 2015 at 5:10 am
Table name is "Transaction"
SELECT [TransactionID]
,[EmployeeID]
,[DateTime]
,[Type]
,[OrderType]
...
October 19, 2015 at 4:46 am
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...
October 19, 2015 at 4:31 am
Viewing 6 posts - 1 through 6 (of 6 total)