Viewing 15 posts - 7,771 through 7,785 (of 8,760 total)
The best scripts around are Ola Hallengren's, http://ola.hallengren.com.
😎
July 23, 2014 at 12:17 am
This is normally the kind of thing I do in such situation, that is using a snip to create the search code, paste the results into a new query and...
July 22, 2014 at 10:48 pm
koolme_85 (7/22/2014)
DECLARE @TBLXML TABLE (COL1 XML NOT NULL);
INSERT INTO @TBLXML(COL1)
EXEC [dbo].[bofa_sp_esb_sel_acc]
@SearchType = N'A',
@SearchInputList = N'57575757',
@FAsInputList = null
Error :-
Msg 6819, Level 16, State 5, Procedure rj_sp_esb_sel_acc, Line...
July 22, 2014 at 10:29 pm
Quick thought, look for the value "Actual" in any column of the tables and track it from there.
😎
July 22, 2014 at 3:42 pm
Francis S. Mazeika (7/22/2014)
file version 2014.120.2000.8product version 12.0.2000.8
size 409k
Date modified 2/21/2014 5:20am
That is the flawed/bugged version.
😎
July 22, 2014 at 11:50 am
You can query the table directly instead of using a variable, straight forward;-) Here is the same code as before with the difference of using an XML column in a...
July 22, 2014 at 10:12 am
mark26parks (7/22/2014)
I can't even...
July 22, 2014 at 5:24 am
Jeff Moden (7/21/2014)
Evil Kraig F (7/21/2014)
mister.magoo (7/21/2014)
July 22, 2014 at 3:56 am
First a correction, I was wrong earlier, OPENXML is NOT DEPRECIATED. My gray-cell memory playing tricks on me again, incorrectly recalled a note from Michael Coles book Pro SQL Server...
July 22, 2014 at 2:32 am
Silverfox (7/20/2014)
So I don't understand, what is the difference between a DBA and Architect apart from a Architect tends to be considered a more senior role with more money.
Quick...
July 22, 2014 at 2:10 am
koolme_85 (7/21/2014)
i did try other methods but no luck
i guess i shall try posting in...
July 21, 2014 at 1:58 pm
Lynn Pettis (7/21/2014)
Eirikur Eiriksson (7/21/2014)
July 21, 2014 at 12:42 pm
Quick suggestion, don't use OPENXML, it is a depreciated feature and shoul not be used in new development. It is also much slower than XQuery/nodes methods, there are many examples...
July 21, 2014 at 12:19 pm
Here is a quick suggestion on how to use a blob table and views to parse the xml
😎
USE tempdb;
GO
/* Create the import table */
CREATE TABLE dbo.TBL_XML_DOC
( XML_DOC_ID INT IDENTITY(1,1)...
July 21, 2014 at 1:07 am
jbnv (7/20/2014)
July 20, 2014 at 1:41 pm
Viewing 15 posts - 7,771 through 7,785 (of 8,760 total)