Viewing 15 posts - 16,321 through 16,335 (of 18,923 total)
Forgot to answer that one... It's a worst practice to call outside process from within a transaction (still in transaction in the trigger).
June 22, 2005 at 1:25 pm
If you don't want to link the servers it's impossible. You'll at least need a job on the outside server that can connect to the protected server, but you...
June 22, 2005 at 1:24 pm
TX... gonna have to download that beta someday
.
June 22, 2005 at 1:21 pm
How about a shipdate column???
June 22, 2005 at 1:19 pm
So there's just a new datatype (varchar(max)) for using in functions/sps?
June 22, 2005 at 1:05 pm
Glad we didn't show 'em how to use the sledge hammer.
![]()
![]()
![]()
June 22, 2005 at 1:03 pm
Alright... can't help you much there.
You can use EM to script all the objects you want.
June 22, 2005 at 12:58 pm
If we got 100 bucks everytime we said that
.
June 22, 2005 at 12:54 pm
When you rename an object, its script create name is not modified (except for tables). You have to do it manually.
June 22, 2005 at 12:51 pm
hmm.
Make the app write the record to a text file on a shared drive on the server that only the 2 server logins an nothing else can access. Then...
June 22, 2005 at 12:49 pm
How are you gonna use that??
I would keep the original select, then use output parameters for the 2 others... or use the reporting tools to get those values.
June 22, 2005 at 12:37 pm
k... just making sure that the design wasn't flawed.
June 22, 2005 at 12:35 pm
Select Min(dtMM.marks) as MinM, Max(dtMM.marks) as MaxM from
(
SELECT college_id,department_id,student_id,SUM(marks) as SUM
FROM student a INNER JOIN college
ON a.college_id=b.college_id
GROUP BY college_id,department_id
) dtMM
June 22, 2005 at 12:30 pm
Select DISTINCT o.Name, O.XType from dbo.SysObjects O inner join dbo.SysComments C on O.id = C.id where text like '%UCN%'
June 22, 2005 at 12:28 pm
Viewing 15 posts - 16,321 through 16,335 (of 18,923 total)