Viewing 15 posts - 706 through 720 (of 927 total)
did you able to get the query ?
try this , it will show you the top most running queries for that server. hope you will able to find something....
March 4, 2014 at 3:50 am
ChrisM@Work (3/4/2014)
Add rua.userIsBound to the index...
March 4, 2014 at 3:14 am
Please post the actual execution plan as a .sqlplan file attachment.
Furthermore, If your queries have something like this :
select Col1
from Table1
UNION
select Col2
from Table2
Replace the 'UNION' with 'UNION ALL',...
March 4, 2014 at 12:47 am
Please post the actual execution plan of the problematic query as a .sqlplan file attachment.
March 4, 2014 at 12:38 am
Michael Poppers (3/3/2014)
marcia.j.wilson (3/3/2014)
I do appreciate the easy point, even though I don't think I earned it.Speak for yourself 😀 -- I thought this QotD was EXCEPTional! 🙂
++++1 :hehe:
March 3, 2014 at 11:45 pm
you can definitely can do
select * from Table1
to
select * from AnothTable
you can achieve this through Variable of Type string.
Let say you define a...
March 3, 2014 at 2:57 am
Great to see that you made a working SSIS package with all the logic you have in your mind. 🙂
I think its a typo but need to highlighted,
I've set...
February 26, 2014 at 4:17 am
Its all about making your mind 1st.
if you are having problem writing sql ( as per you stated) you can do the following
IF (SELECT Count(*) FROM DL_5010_5010 WHERE CallStatusZone1 =...
February 25, 2014 at 2:40 am
you have to convert this nvarchar(4000) to xml 1st and then apply the code which i shared earlier. you cannot update the varchar field containing xml.
February 19, 2014 at 10:38 pm
try this
declare @table table (id int identity(1,1), docxml xml)
insert into @table (docxml)
select CAST(N'<?xml version="1.0" encoding="utf-16"?> <InterfaceConfig xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"> <Source>.</Source> <Archive>.</Archive> <Log>.</Log> ...
February 19, 2014 at 6:59 am
Ryan Keast (2/19/2014)
Thanks for that - it doesn't actually update the vchConfig field though?
There is no 'vchConfig' tag available in the xml you shared. OR im missing something here ??
February 19, 2014 at 6:14 am
declare @xml as xml
select @xml = CAST(N'<?xml version="1.0" encoding="utf-16"?> <InterfaceConfig xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"> <Source>.</Source> <Archive>.</Archive> <Log>.</Log> <Filter>PU*.csv</Filter> <Delimiter>"|"</Delimiter> <CreateAssets>true</CreateAssets>...
February 19, 2014 at 5:52 am
Viewing 15 posts - 706 through 720 (of 927 total)