Viewing 7 posts - 16 through 22 (of 22 total)
I don't understand your question. If you have a file (or a table in your database) with column mappings, then you have to seek in this table for a corresponding...
December 2, 2008 at 2:33 am
You can use system views sys.objects and sys.columns to check, if the columns exist in your tables
Information on views:
http://msdn.microsoft.com/en-us/library/ms190324(SQL.90).aspx
http://msdn.microsoft.com/en-us/library/ms176106(SQL.90).aspx
December 2, 2008 at 2:14 am
I looked in the system procedure sp_add_job where the error comes from. you have an output variable @jobId.
EXEC @ReturnCode = msdb.dbo.sp_add_job @job_name=N'Job1',
@enabled=1,
...
November 27, 2008 at 9:15 am
JPster (11/27/2008)
November 27, 2008 at 8:33 am
I can tell you, that on the SQL server 2000 the rowguid columns will not be removed
November 27, 2008 at 4:00 am
Left(Coalesce(@String, '') + '----------', 10)
November 26, 2008 at 3:28 am
You can achieve this with following query:
Select *
From tempTable
Where ID <=
(
select MIN(ID)
from tempTable T1
Where
(
select Sum(TmePeriod) from tempTable T2 Where T2.ID <= T1.ID
) > 20
)
But I'm not sure,...
November 19, 2008 at 4:02 am
Viewing 7 posts - 16 through 22 (of 22 total)