Viewing 15 posts - 4,021 through 4,035 (of 13,469 total)
NineIron (2/12/2013)
MRN ...
February 12, 2013 at 6:22 am
davidsalazar01 (2/12/2013)
It's only one occurence (e.g.<DID>) in the XML and your right I only want the data between the tags. Would the samples you posted do the trick? ...
February 12, 2013 at 6:03 am
could the script be overwriting the same backup file with differnet databases?
ie the db "Dictionary" gets backed up to C:\Data\Backup.bak, and then the database "SandBox" overwrites teh exact same file...
February 12, 2013 at 5:45 am
david the select statement you posted will find where the END tag begins...wouldn't you want the value between the <did> </did> tags?
could the opening <did tag have attributes?
is there more...
February 12, 2013 at 5:33 am
You probably have all the links you needed now Jeff, I'm late to the party on this one, but here's one more:
Project Gutenberg has a large number of ftp mirrors...
February 11, 2013 at 3:23 pm
supplying the missing DDL and DML setup that is preventing analysis:
drop table container_attribute_type
CREATE TABLE container_attribute_type(container_attribute_type_id int,priority_sequence int,branch_id int,updated datetime,updatedby varchar(30))
INSERT INTO container_attribute_type(container_attribute_type_id,priority_sequence,branch_id)
SELECT 4,1,3 UNION ALL
SELECT 11,2,3 UNION...
February 11, 2013 at 2:03 pm
another way is to backup and restore the database, then delete everything in foreign key hierarchy order in the new copy.
also, i know you said no data, but from experience...
February 11, 2013 at 11:23 am
a coded example of what Seans' first thought: clearly item 2 you wanted, at 40,000, does not give the desired results.
you'll need to clarify either the biz logic or the...
February 11, 2013 at 10:54 am
saxena200 (2/11/2013)
Question - before data loading is it necessary to drop the view or if i drop the index...
February 11, 2013 at 9:14 am
99% of the time, you do this kind of image inserts/updates in a programming language.
TSQL does not have a native, built in way to do image to disk operations....
but it's...
February 11, 2013 at 8:54 am
what if they have 2008R2 or 2012 installed? 2005 is already eight years old...wow. keep in mind that official support from MS (end of life?) for that product is probably...
February 11, 2013 at 6:20 am
Mike Seattle (2/8/2013)
February 8, 2013 at 1:25 pm
Richard Warr (2/8/2013)
February 8, 2013 at 11:53 am
you created teh case in the CTE, but you never use it in your final query, i think.
see my reformatted post of your code, with this comment:
e.TermWeek,--<<--don't you want...
February 8, 2013 at 9:45 am
Like Anthony mentioned, the default trace has the information you are looking for, if not to much time has passed.
SSMS has a handy report which queries the trace for you:

Additionally,...
February 8, 2013 at 5:37 am
Viewing 15 posts - 4,021 through 4,035 (of 13,469 total)