Viewing 15 posts - 1 through 15 (of 24 total)
For the second table, only one Insert will take place.
CREATE TABLE dbo.Cuss2
(cid int NOT NULL, cut varchar(25) NOT NULL,
ph varchar(20) NOT NULL, adx varchar(50) NOT NULL,
CONSTRAINT...
September 19, 2011 at 12:15 am
Really many thanks.
May 15, 2011 at 6:13 am
CREATE TRIGGER [dbo].[trg_LogStatus]
ON [dbo].[Waybills]
AFTER INSERT,UPDATE
AS
BEGIN
SET NOCOUNT ON;
DECLARE @WaybillId int
DECLARE @ActionBy...
May 15, 2011 at 3:50 am
The user granted "VIEW SERVER STATE", must always be able to query sysprocesses for ALL users.
Please double check that it's already granted it, and you are not mixing between users...
January 2, 2011 at 11:54 pm
Just make sure that the SSMS's connected session is by the user granted the "VIEW SERVER STATE".
January 2, 2011 at 2:19 am
I beleive you need to explicitly grant View Server State permissions to each of the users.
"GRANT VIEW SERVER STATE TO user"
January 1, 2011 at 6:16 am
Try the OPENROWSET
SELECT * FROM OPENROWSET(BULK N'C:\image.gif', SINGLE_BLOB) AS MyImage;
May 25, 2010 at 12:11 am
Well, the problem solved by conversion to the national character set,
SELECT UNISTR(My_Column), this to return NVARCHAR(2) data type which to be understood by the SQL Server.
April 14, 2010 at 11:47 pm
Thanks Paul, apart from the storage is there any way to load HTML documents from the web like those exists for documents on local file system / network share?
SELECT *...
March 24, 2010 at 7:08 am
Really thanks Brain, a solution is detailed in the link.
Finally solved, many thanks
March 18, 2010 at 9:01 am
Has any one tried it on a named instance with a default one of 2005?
Thanks,
March 18, 2010 at 12:41 am
I did it exactly. Moreover, I repaired the installation and re enabled the configuration but still in vain. Any help please
March 17, 2010 at 7:32 am
Viewing 15 posts - 1 through 15 (of 24 total)