Viewing 15 posts - 1 through 15 (of 25 total)
hi
check recursive triggers database propertity is on .
if it is ON turn off .
You can see this in database properity option tab
You can use sp_dboption to alter this...
December 1, 2005 at 5:59 am
HI
Exec (@SQL2) is correct .it is not like this Exec @SQL2
Regards
padmakumar
November 29, 2005 at 8:06 am
hi
Version u can get from @@version
8.00.760 | SQL Server 2000 SP3 |
I think 8.00.2039 for Sp4
Regards
November 29, 2005 at 2:12 am
hi
it is Divide by zero error .
regards
padmakumar
November 29, 2005 at 1:51 am
Hi
Table Syscolumns store all columns and information about it . it store parm info of proc . if you are looking to query name from all table in a...
November 29, 2005 at 12:03 am
hi
If your looking for View/proc or Table Definition/text then
For Table it is sp_help
for text of View/Proc...
November 28, 2005 at 6:41 am
hi
Select
CONVERT(varchar(12), isnull(n.TestDateTime,''),103) from Table
Regards
padmakumar
June 6, 2005 at 9:59 pm
Hi
To return all start with AB12
u can use like 'AB12%' or if u need only with space then like 'AB12 %'
May 26, 2005 at 6:49 am
Hi
TRUNCATE TABLE will reset identity seed . But delete will preserve the identity seed . if it is a small table you can Use delete . Else Procedure option you...
May 19, 2005 at 9:23 am
Hi
u can use this statement to know about identity column in a DB .
Select * from syscolumns where status= 0x80
Padmakumar
May 16, 2005 at 6:11 am
In this case u can use outparm of sp_executesql .
For more than one result a cursor can be used as output param
I think this may solve u r problem
DECLARE @SQLCURSORSTRING nvarchar(500)
DECLARE...
May 15, 2005 at 11:49 pm
i think u can recover database using
this procedure
first use "sp_resetstatus<DbName>" system proc to resetstatus
after that use dbcc dbrecover<Dbname>
than restart u r server .
July 21, 2003 at 12:14 pm
if u have too many params and u want to bulid a sql statment according to the data in it u can try sp_sqlexcute or exec()
by using this...
July 21, 2003 at 12:07 pm
Table Inserted and Deleted are only available
with trigger. IF u want to get info of user add recored u can add a column like username and put default (SUSER_SNAME) for...
July 21, 2003 at 11:59 am
rs_save_shipping_history.MoveNext
Loop
This means u r using a loop .
In first loop u created and appended two
Parameters @work_ord_num char(9) and
@work_ord_line_num char(3)
and in Subsequent loops u r...
July 21, 2003 at 11:40 am
Viewing 15 posts - 1 through 15 (of 25 total)