Viewing 9 posts - 1 through 9 (of 9 total)
I am trying to run following query -
DECLARE @IP NVARCHAR(15);
SET @IP = (SELECT EVENTDATA().value('(/EVENT_INSTANCE/ClientHost)[1]', 'NVARCHAR(15)'));
Select @IP
It is returning Null. Am I doing something wrong ?
November 11, 2013 at 2:21 am
It is not mainly for comma seperated column name. It can be use when you want comma seperated data on grouping of some other field. Please see the output resultset...
July 6, 2010 at 10:49 pm
Please check if following statement is missing from your script -
Alter Table TestTable Add ColRowNo int
if it is missing, then add it next to statement "select * from TestTable"
it...
July 6, 2010 at 3:23 am
You can drop the index on this table. Then insert the data and recreate the index. It will reduce the time of index update durig insert.
April 28, 2010 at 12:23 am
Hi,
You can use it by creating Linked server. Another way is openquery and opendatasource functions.
February 6, 2009 at 6:18 am
hi,
you can give instance name to install different sql versions on same machine.
January 30, 2009 at 3:51 am
Hi
You can use import data wizard in sql server.
Thanks
January 29, 2009 at 7:16 am
You can run this query using brackets as -
backup log [DDT-20071007] with truncate_only
Hope it will work.
January 29, 2009 at 7:11 am
Viewing 9 posts - 1 through 9 (of 9 total)