Viewing 15 posts - 31 through 45 (of 125 total)
use this way. But Iam not sure.
Use system_function_schema
go
GRANT SELECT
ON fn_trace_getinfo
TO Audit
If Audit is a nt group users, you need to specify the domain name also.
Thanks,
Ganesh
January 18, 2005 at 9:20 am
Try this way
select convert(varchar(25),getdate(),21)
Thanks,
Ganesh
January 18, 2005 at 9:06 am
Did you run index tuning wizard. If you would have run that and in the meanwhile if it got interrupted. It would have created hypothetical indexes pertaining to your table.
sp_helpinex...
January 17, 2005 at 9:04 pm
SET TRANSACTION ISOLATION LEVEL REPEATABLE READ
GO
BEGIN TRANSACTION
--
--
...
COMMIT TRANSACTION
January 17, 2005 at 8:46 pm
Really, Iam not sure it will throw an error. Send the code segment also.
I doubt the data type is not compatible. Better use bigint.
If you are not going to manipulate...
January 17, 2005 at 2:46 pm
SET TRANSACTION ISOLATION LEVEL REPEATABLE READ
set the isolation leve either REPEATABLE READ or SERIALIZABLE. So that you don't worry about the locking hint. The basic...
January 17, 2005 at 2:42 pm
Check whether you have initialized the variable "id".
As the visual studio environment has a rich facility for debugging. check the variable you are assigning
is not null and so on.
Thanks,
Ganesh
January 17, 2005 at 2:33 pm
@ThisMachine varchar(10)
AS
January 14, 2005 at 1:43 pm
SET DATEFORMAT mdy
GO
DECLARE @datevar datetime
SET @datevar = '12/31/98'
SELECT @datevar
GO
set the format and proceed.
Thanks,
Ganesh
January 14, 2005 at 1:41 pm
Please follow this link
http://www.sqlservercentral.com/forums/shwmessage.aspx?forumid=8&messageid=112074&edit=failed
January 14, 2005 at 11:40 am
It's works for me in a different database as I don't have northwinds in my sqlserver box.
Check the data exists
SELECT OrderID, CustomerID, EmployeeID, OrderDate
FROM Orders
WHERE CustomerID IN ('VINET', 'TOMSP' ,...
January 11, 2005 at 10:21 am
SELECT [Customer Change No], [PIA Material No], [Due date], [Adj Due Date]) AS Expr1
FROM dbo.[tblPPAP Notification Detail]
where ([Adj Due Date]) is null
Thanks,
Ganesh
January 11, 2005 at 10:16 am
January 10, 2005 at 2:36 pm
Instead of giving the @cnnAccess try giving @ConnectionString
EXEC @hr = sp_OASetProperty @cmd, 'ActiveConnection', @ConnectionString
Thanks,
Ganesh
January 10, 2005 at 2:07 pm
The class string you are using is perfect. Please attach the error too, so that it will become easy for everyone to help you.
January 10, 2005 at 12:28 pm
Viewing 15 posts - 31 through 45 (of 125 total)