Viewing 15 posts - 2,611 through 2,625 (of 8,761 total)
rajemessage 14195 (11/27/2016)
pls tel me why two spid are there in sp_who2
It's just duplicated in the output as a handy extra for right-scrolling users.
๐
November 27, 2016 at 5:04 am
Ed Wagner (11/26/2016)
TomThomson (11/24/2016)
Eirikur Eiriksson (11/24/2016)
But then again, going out for Caffรจ in London is like going for a Pub in NYC, futile exercise
Well, my experience suggests there's plenty of...
November 26, 2016 at 9:04 am
ahmed_elbarbary.2010 (11/26/2016)
instructor,course,class,section in one table
please help me in that
my design is

and schedule for instructor as...
November 26, 2016 at 4:30 am
No need for a new database but you do need to analyse the relationships and the entities.
๐
Start with a verbal analysis such as:
An Instructor(Person) has Zero or more Classes in...
November 26, 2016 at 3:52 am
Jay B (11/26/2016)
Great!!!many many thanks
You are very welcome.
๐
Just a quick note, do use the text() function when extracting element values, it is much more efficient than extracting the values without...
November 26, 2016 at 2:55 am
Here is a quick example, should be enough to get you over this hurdle.
๐
USE TEEST;
GO
SET NOCOUNT ON;
IF OBJECT_ID(N'dbo.XMLwithOpenXML') IS NOT NULL DROP TABLE dbo.XMLwithOpenXML;
CREATE TABLE dbo.XMLwithOpenXML
(
Id...
November 26, 2016 at 2:21 am
I have unraveled such situations quite few times, always some nice surprises;-)
๐
Two questions, what is the isolation level used? What is the ratio of optimization time outs?
November 25, 2016 at 10:38 am
Can you post an example of the XML please?
๐
November 25, 2016 at 8:02 am
BOR15K (11/25/2016)
Not sure I understood you - it will show xmlns='*' then, no?
Not what I meant
๐
To clarify, skip this
WITH XMLNAMESPACES (
'urn:digi-inkoop:ubl:2.0:NL:1.6:UBL-NL-CommonBasicComponents-2' AS [nl-cbc],
'urn:un:unece:uncefact:data:draft:UnqualifiedDataTypesSchemaModule:2' AS udt,
'urn:oasis:names:specification:ubl:schema:xsd:CommonExtensionComponents-2' AS ext,
'urn:oasis:names:specification:ubl:schema:xsd:CommonBasicComponents-2' AS cbc,
'urn:oasis:names:specification:ubl:schema:xsd:CommonAggregateComponents-2'...
November 25, 2016 at 7:53 am
Quick suggestion, skip the namespaces and use a wildcard *: prefix instead.
๐
November 25, 2016 at 7:09 am
Nomvula (11/25/2016)
Yes, I want to be able to enter multiple values for the @shift.
@shift is a scalar variable, you are probably better of splitting the content or do some other...
November 25, 2016 at 7:07 am
Nomvula (11/25/2016)
Thanks for the response, but I tried that solution it's only works if you select single value. I you select multiple selection the WHERE clause doesn't work.Regards,
Do you want...
November 25, 2016 at 3:44 am
I would think very carefully about this before implementing
๐
1) Will there be more indices on the table than the clustered index?
2) Will the clustered index key be foreign key in...
November 25, 2016 at 2:11 am
Here is a suggestion
๐
DECLARE @shift VARCHAR(100) = 'Afternoon Shift (FMF/SVP)';
DECLARE @Table TABLE
(
code VARCHAR(10)
,Description VARCHAR(100)
...
November 25, 2016 at 1:25 am
He he, didn't read the post properly:w00t:
๐
Can you post an example of the XML stored in the @RichTests variable?
November 24, 2016 at 1:19 pm
Viewing 15 posts - 2,611 through 2,625 (of 8,761 total)