Viewing 15 posts - 15,331 through 15,345 (of 18,923 total)
I think you can make this work if you call a StoredProc on the linked server... no need for dynamic sql there.
July 10, 2005 at 1:01 pm
It can also mean Happy to help. Which is the meaning I use it for on this site.
July 10, 2005 at 9:29 am
You can't do that in sql server. You have to use dynamic sql for such a task (and build the whole cursor part in the dynamic sql).
Why is the...
July 9, 2005 at 10:55 pm
Can't you just do this?
Select * from MyLinkedServer.DbName.dbo.EmployeeNameTable where emplid = @Param
July 9, 2005 at 6:28 pm
You can use the import data wizard on the target server's database. Or you can use dts (copy object task). It's all wizards and easy to understand in...
July 9, 2005 at 6:25 pm
View,the values are hard coded. The table function allows to have them dynamic. Look in books online in you need the syntax for the function.
July 9, 2005 at 12:20 pm
If the condition is always exactly the same, you can create a view with that condition included, then you just have to select from that view, flushing the statement in...
July 8, 2005 at 10:49 pm
I'll take your word on this one Michael, the quote I have from the sitcom "Friends" doesn't use the t. But frankly I don't really care
July 8, 2005 at 10:46 pm
Don't forget to change all the calls for all those objects in tha application. Then retest the whole app to be sure you didn't forget something. Now that can...
July 8, 2005 at 6:56 pm
Just create a table like this I assume :
Account_id int?
DateInterest smalldatetime
Amount decimal(12,2)
But this seems to me like this should be part of a transaction table with transaction type... but...
July 8, 2005 at 6:50 pm
Please do not cross-post, we monitor all boards.
Finish the thread here :
http://www.sqlservercentral.com/forums/shwmessage.aspx?forumid=146&messageid=199020
July 8, 2005 at 6:47 pm
Please do not cross-post, we monitor all boards.
Finish the thread here :
http://www.sqlservercentral.com/forums/shwmessage.aspx?forumid=146&messageid=199020
July 8, 2005 at 6:47 pm
Viewing 15 posts - 15,331 through 15,345 (of 18,923 total)