Viewing 9 posts - 1 through 9 (of 9 total)
sp_depends storedprocedurename
This would give all the dependent objects of the Stored procedure ..
January 2, 2006 at 4:01 am
Identity columns are good for Primary keys ...
But Identity columns have following constraint
1) You can create only one identity column per table
DrawBacks:
*********
1) Suppose you have created a identity column with...
January 2, 2006 at 3:59 am
If you are deleting data from all the tables .Then probably the best way to do this would be use the Undocumented Stored procedure
declare @command1 varchar(8000)
Exec sp_MSforeachtable @command1="delete...
January 2, 2006 at 2:32 am
The problem is definitley with the Login ..
Try to recreate the Linked server with login as [sa] and try running the procedures.
I guess it would work..
Cheers ...
December 30, 2005 at 9:58 am
I think it would be better if you can create a DTS package to do the export from the flat file to Access/SQL server.Probably you can write an ActiveX script...
December 30, 2005 at 1:20 am
I think if you change the code in the following way it would solve ur problem
Create Trigger [dbo].[IT_Restrict_AreaCodes]
ON [dbo].[dialempty]
AFTER INSERT
AS
If Exists
(
select
p.projecttype
from
project p
INNER...
December 30, 2005 at 1:08 am
Hi,
TSQL has a problem that u cannot have a variable of TEXT/NTEXT datatype.I think the best way would be use a temp table
Create #SqlMailBody(MailBody TEXT)
and insert all the data into...
January 2, 2005 at 1:40 am
Hi Sameh,
I think that would not affect the performance much.But be sure that you create proper indexes to make sure that ur data retrieval is faster.
Regards,
Vasanth
January 2, 2005 at 1:29 am
I think that while creating the index on the view u have not mentioned (with schemabinding) option.You can create a...
January 2, 2005 at 1:25 am
Viewing 9 posts - 1 through 9 (of 9 total)