Viewing 15 posts - 2,566 through 2,580 (of 8,753 total)
GA_SQL (12/9/2016)
December 9, 2016 at 2:07 am
Hari-250426 (12/8/2016)
Just one question. Does this syntax work with older versions of SQL Server as all our clients won't be having SQL Server...
December 8, 2016 at 11:13 am
Hari-250426 (12/6/2016)
Thanks so much.Why doesn't Openxml work in this case?
//Hari
Haven't had time to look at it and frankly, I wouldn't bother with sp_xml_preparedocument as the XQuery methor is much better.
😎
December 8, 2016 at 3:47 am
Question, will you be running other services on the server, i.e. SSIS,SSRS,SSAS etc.?
😎
With 160Gb memory on the server, I would suggest to set the SQL Server Max Memory to 128Gb...
December 7, 2016 at 11:17 pm
Eric M Russell (12/7/2016)
December 7, 2016 at 12:17 pm
rodjkidd (12/7/2016)
Eirikur,I'm about a 20 minute walk to the High Holborn Caffe 1882. Let me know if you still want to meet up today?
Chris, are you about?
Rodders...
Just sent you a...
December 7, 2016 at 5:50 am
If you are either copying all or majority of the objects, I would suggest doing a backup and restore with a different name, then drop anything that is not needed.
😎
December 7, 2016 at 2:47 am
GA_SQL (12/7/2016)
Anyways to copy the DB objects with data from one schema to another using stored procedure.
You will need to script out all objects in the source db, then create...
December 7, 2016 at 2:21 am
GA_SQL (12/7/2016)
problem, the script only creates the database, it deos not copying the table,data and SP's, please suggest some code changes alternate way to do this.
ALTER SCHEMA schema_name TRANSFER transfers...
December 7, 2016 at 2:03 am
Siten0308 (12/6/2016)
so i am wondering, how does cardinality estimator fit in with running the execution plan, is it help give the results of estimate, or part of the actual...
December 7, 2016 at 1:33 am
First a question, can you explain why you want to do this?
😎
There are several ways of doing this, some good and some bad, unfortunately the T-SQL ones are not...
December 7, 2016 at 1:24 am
Quick suggestion, use XQuery, here is an example
😎
USE TEEST;
GO
SET NOCOUNT ON;
DECLARE @XML_DOC XML = '<?xml version="1.0" encoding="UTF-8"?>
<DespatchAdvice xmlns="urn:oasis:names:specification:ubl:schema:xsd:DespatchAdvice-2" xmlns:clm5639="urn:un:unece:uncefact:codelist:specification:5639:1988" xmlns:ext="urn:oasis:names:specification:ubl:schema:xsd:CommonExtensionComponents-2" xmlns:ccts="urn:un:unece:uncefact:documentation:2" xmlns:cct="urn:un:unece:uncefact:data:specification:CoreComponentTypeSchemaModule:2" xmlns:cac="urn:oasis:names:specification:ubl:schema:xsd:CommonAggregateComponents-2" xmlns:clmIANAMIMEMediaType="urn:un:unece:uncefact:codelist:specification:IANAMIMEMediaType:2003" xmlns:udt="urn:un:unece:uncefact:data:specification:UnqualifiedDataTypesSchemaModule:2" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:clm66411="urn:un:unece:uncefact:codelist:specification:66411:2001" xmlns:clm54217="urn:un:unece:uncefact:codelist:specification:54217:2001" xmlns:cbc="urn:oasis:names:specification:ubl:schema:xsd:CommonBasicComponents-2" xmlns:qdt="urn:oasis:names:specification:ubl:schema:xsd:QualifiedDatatypes-2">
...
December 6, 2016 at 4:22 am
Start by having a look at these two articles
😎
Cross Tabs and Pivots, Part 1 – Converting Rows to Columns[/url]
December 6, 2016 at 1:31 am
Quick question, have you tested if @i ever becomes NULL?
😎
WHILE @i IS NOT NULL
...
SELECT @i = min(Id) FROM @Alarms WHERE id > @i
December 6, 2016 at 1:26 am
I prefer using Extended Events when working with MARS result sets, little bit more work but cleaner to process especially if you take the result straight into Excel or PowerBI.
😎
One...
December 5, 2016 at 9:54 am
Viewing 15 posts - 2,566 through 2,580 (of 8,753 total)