Viewing 10 posts - 1 through 11 (of 11 total)
From Microsoft: This Property is Read-only, so nothing is wrong.
If you not don´t want receive that notification simply disable that feature from Job.
Regards
:.::.:.::
December 9, 2004 at 11:01 pm
I suggest this
If @ID = 0
BEGIN
...INNER JOIN dbo.Table_2 T2 (nolock)
ON T1.column = T2.column
end
else
begin
INNER JOIN dbo.Table_2 T2 (nolock)
ON T1.column = T2.column
AND ( T2.ID = @ID)
END
That is the simple way to...
:.::.:.::
December 9, 2004 at 10:36 pm
Hi, the solution in this link it's really good but isn't simple:
http://www.spaceprogram.com/knowledge/sqlserver_recover_from_deleted_log.html
Please, you must follow instructions step by step, reading carefully. It's work... Trust me.
but, the 10 step may be don't...
:.::.:.::
January 21, 2004 at 3:14 pm
Hi, only if you working with sql 2000:
1 First of all, you need create a function:
Create function dbo.staffnames (@taskid int)
RETURNS nvarchar(255) AS
BEGIN
declare @txt nvarchar(255)
set @txt =...
:.::.:.::
January 21, 2004 at 2:17 pm
but... what happens if the location column type is text? and the order of insert is c, a, d, g, f, e? the results of query must be 'e' no...
:.::.:.::
January 21, 2004 at 11:24 am
I agree whith fhanlon, i couldn't see the reasons for implement this in vb or c# even with ado.net. May be you need to know how to show this data on a web page.
:.::.:.::
January 20, 2004 at 2:56 pm
try with this...
1.- add a new column in an access table
Name : RowID
Type : Autonumeric
2.- Load the data in your SQLServer Table, with the same new structure
3.-...
:.::.:.::
January 20, 2004 at 2:44 pm
here another tips...
--T-SQL
declare @retval int
exec @retval = master.dbo.xp_cmdshell 'c:\program files\myapp\myapp.exe'
print @retval
if @retval = 0 then the execution was succefully
-- JOB
You may use Operating System Command (CmdExec) option from 'Edit...
:.::.:.::
January 20, 2004 at 1:55 pm
Ok, Try with this...
select 'UPDATE ' + object_name(c1.id)
+ ' SET [' + c1.name + '] = '
+ case when c2.xtype in (58,61,111)
then '''1900-01-01'''
when c2.xtype in...
:.::.:.::
January 20, 2004 at 1:20 pm
Hi , if I understand, may be this code help you!
select 'update ' + object_name(id)
+ ' set [' + c.name + '] = '
+ case c.xtype when 61 then...
:.::.:.::
January 20, 2004 at 11:10 am
Viewing 10 posts - 1 through 11 (of 11 total)