Viewing 15 posts - 4,546 through 4,560 (of 5,103 total)
The Code Posted is Correct.
if exists (select * from dbo.sysobjects where id = object_id(N'[Table1]') and OBJECTPROPERTY(id, N'IsUserTable') = 1)
drop table [Table1]
GO
CREATE TABLE Table1 (CaseNbr int)
GO
if exists (select * from dbo.sysobjects...
March 3, 2004 at 7:46 am
COLUMNS_UPDATED can be used to detect a multiple column change as a bitmasked value to trigger some actions
March 3, 2004 at 7:06 am
that was a typo. I was just trying to help. BTW is not semantics is syntaxis
March 3, 2004 at 6:46 am
CREATE PROCEDURE [dbo].[prc004KillProcess]
(@intSPID smallint)
AS
DECLARE @str as vaschar(100)
SET @str ='KILL ' + cast (@intSPID as varchar(3))
exec (@str)
March 3, 2004 at 6:22 am
Some examples are:
DENY ALL PRIVILEGES (BirthDate) ON Employees To guest
DENY SELECT (BirthDate) ON Employees To guest
DENY SELECT,UPDATE (BirthDate) ON Employees To guest
HTH
March 3, 2004 at 6:10 am
carmines,
none of the methods shown require temporary tables they were created using temptables just to avoid the creation of a "true" table in our enviroment.
If you replace the #T1 on...
March 2, 2004 at 4:00 pm
try:
INSERT INTO UNRESOLVED (CaseNbr)
SELECT
T3.CaseNbr
FROM
Table3 T3
LEFT OUTER JOIN
(Select CaseNbr From Table 1
UNION
Select CaseNbr from Table 2
 Q
ON T3.CaseNbr...
March 2, 2004 at 3:50 pm
With a minor variation:
Create Table #Tmp(Product VarChar(50),Quantity Decimal(10,4))
Go
Insert #Tmp
Select 'Widget',5
Insert #Tmp
Select 'Widget',6
Insert #Tmp
Select 'Widget',4
GO
Select * from #Tmp
Go
Select Product,number,Quantity
From #Tmp as t
Cross Join (SELECT number from master..spt_values where type ='P'...
March 2, 2004 at 3:39 pm
From what I wrote I forgot to mention you have to do either:
SELECT * from fnEmployeesByGroupCode (',CMS,CM,')
OR Better yet:
SELECT TOP 100 PERCENT dbo.CRM_Groups.Group_Code,
dbo.Employee.Employee_Id, dbo.Employee.Job_Title,
dbo.Employee.Team_Number,
dbo.Employee.Full_Name
FROM dbo.Employee INNER...
March 2, 2004 at 1:51 pm
Yep, but Microsoft posted Officially there, so I went straight from the horses' mouth
March 2, 2004 at 1:01 pm
I am not fun of what you are doing here but this is probably what you are looking for:
SELECT TOP 100 PERCENT dbo.CRM_Groups.Group_Code,
dbo.Employee.Employee_Id, dbo.Employee.Job_Title,
dbo.Employee.Team_Number,
dbo.Employee.Full_Name
FROM dbo.Employee INNER...
March 2, 2004 at 12:46 pm
FROM BOL:
All DB-Library applications, such as isql, work as SQL Server 6.5–level clients when connected to SQL Server 2000. They do not support some SQL Server 2000 features. The osql...
March 2, 2004 at 12:30 pm
I had to Move some data around just to have intersecting sets because the data was not overlapping very well like:
if exists (select * from dbo.sysobjects where id = object_id(N'[event]')...
March 2, 2004 at 12:25 pm
Are you sure that the table BATCH_CONTROL has an IDENTITY Field?
BTW when you check for errors after the INSERT The Statement should be
SELECT @Er=@@ERROR,...
March 2, 2004 at 12:11 pm
Viewing 15 posts - 4,546 through 4,560 (of 5,103 total)