Viewing 15 posts - 13,576 through 13,590 (of 13,838 total)
Launch Enterprise Manager and navigate to Management/SQL Server Agent/Jobs. Right-click in the Jobs window and select 'New Job'. Give the job a name and click on the Steps...
December 18, 2004 at 6:19 pm
Your error message is not appearing - please add it to your post.
December 2, 2004 at 11:36 pm
If SQL Server is powering a web app, you cannot buy a licence that refers to CALs and must instead purchase a 'processor' licence.
So you need the standard edition with...
December 2, 2004 at 5:43 pm
Please post the query that is generating the error and details of how it is submitted - eg are you using a pass-through query in Access?
You may be receiving the...
December 1, 2004 at 5:11 pm
Try this in Northwind (try varying the table_name in the WHERE clause) and you should be on the right track:
select a.constraint_name, b.column_name from information_schema.table_constraints a
inner join information_schema.constraint_column_usage b
on a.constraint_name =...
December 1, 2004 at 5:05 pm
I actually think that the JOIN method will execute faster than the subquery I proposed. However, the subquery method is easier IMO to write and I had a hangover...
November 24, 2004 at 4:59 pm
Hi Karen
This should work:
DELETE FROM [SD_Order_Dev].[dbo].[ProjectDemand]
WHERE
dbo.ProjectDemand.ProjectNumber in
(select ProjNum from dbo.CADFilePath)
Phil
November 23, 2004 at 4:41 pm
Jack, please do not post the same query on multiple SQLServerCentral forums.
Others, please refer to
http://www.sqlservercentral.com/forums/shwmessage.aspx?forumid=23&messageid=147644
for original post.
November 22, 2004 at 9:44 pm
Your application sounds fairly standard in architecture (though what do you mean by 'agent', exactly?). Please be a bit more specific - what issues/problems do you foresee?
Phil
November 22, 2004 at 9:42 pm
Please post some sample data - both source and how you would like it to look after processing.
November 21, 2004 at 5:54 pm
If your question is: "Is it better to have a single table with the capacity for multiple addresses in a single row, or one master table linked to an address...
November 21, 2004 at 4:10 pm
Correct, it doesn't - would be damn useful though.
November 18, 2004 at 4:19 pm
Your use of CAST is incomplete. Do you mean
cast(b.begindate as datetime) perhaps?
Phil
November 17, 2004 at 9:53 pm
Are you suggesting that you will need to store long strings of narrative? Will you need to perform any structured analysis on the data, or do you just need...
November 17, 2004 at 9:50 pm
Viewing 15 posts - 13,576 through 13,590 (of 13,838 total)