Viewing 15 posts - 16 through 30 (of 33 total)
Hi Muthyala,
Try entering the Linked Server name before the Schema name.
Select * From LINKEDSERVERNAME..SCHEMANAME.TABLENAME
Thanks,
Karthick.
June 15, 2012 at 7:38 am
Hi Koen,
I am sorry for taking so long to reply to your mail.
Yes i am getting a warning message if i run the Job in BIDS.
The message goes as follows:
"Warning...
June 15, 2012 at 7:36 am
Hi,
The password is storing correctly...
The Package is running successfully but its still giving the error message...
June 11, 2012 at 10:33 am
Yes...
and accessing that table through SQL Server authentication...
June 11, 2012 at 2:24 am
Hi,
Insert into Table2(Column1, column2,column3...)
Select (Column1, Column2, Column3, ...)
From Table1.
If they are in different databases then use as <DatabaseName.dbo.TableName>
May 2, 2012 at 12:38 am
Hi Guys,
Thanks for the reply.
Was help full...
May 2, 2012 at 12:34 am
Hi ,
Check the below functions they will help you...
CREATE FUNCTION [GetFirstDateofMonth]
(@Date as DateTime)
RETURNS DateTime AS
BEGIN
Declare @FirstDate DateTime
Set @FirstDate = DateAdd(Day, 1, @Date -...
April 30, 2012 at 7:22 am
Hi Mohan,
Open SSMS
Right Click on the Job you want and from the POP Up select Disable option.
To check after its been disabled the Job will be having an Red arrow...
April 9, 2012 at 3:06 am
I have three tables
Table 1 has fields -> [ID] , [Person Name]
Table 2 has fields -> [ID] , [Description]
Table 3 has fields -> [ID] , [Created (Date&Time)] , [Actual Finish...
March 12, 2012 at 11:41 pm
It has a Constant Format in which it will appear,
And it is 36 Bit not 16 Bit and Each Digits can be of HexaDecimal Value From (0 -9) and...
March 12, 2012 at 11:55 am
Hi,
Generally Uniqueidentifier is a 36 bit alphanumeric unique Value that will not be duplicated.
Its syntax is XXXXXXXX-XXXX-XXXX-XXXX-XXXXXXXXXXXX.
It is a data type in SQLServer & it will be mostly used as...
March 12, 2012 at 3:54 am
FROM PRD_HEADER INNER JOIN PRD_Summary ON PRD_HEADER.PrdKey = acc_summary.PrdKey
INNER JOIN PRD_Unit ON PRD_Summary.PrdKey = PRD_Unit.PrdKey
Check this Join Condition...
Shound you be joining PRD_HEADER.PrdKey = PRD_summary.PrdKey instead of PRD_HEADER.PrdKey = acc_summary.PrdKey
March 10, 2012 at 11:47 am
Can you Paste the Exact Result that you are expecting...?
March 8, 2012 at 7:53 am
Can You Explain Your requirement more...
What is the purpose of that Complex Case Statement?
March 7, 2012 at 1:21 am
Gan you explain a Bit...
This Is Possible Using Linked Server's But cannot say If this is what you are expecting, Explain your need?
March 6, 2012 at 6:45 am
Viewing 15 posts - 16 through 30 (of 33 total)