Viewing 15 posts - 31 through 45 (of 76 total)
Try this one instead.
SELECT DISTINCT
t.name AS Table_Nme,
ept.value AS Table_Desc,
c.name AS Column_Nme,
st.name + '(' + CASE WHEN c.max_length = - 1 THEN 'max'...
January 22, 2014 at 10:45 am
Here is a modified version that shows the primary and foreign key names and includes another way to correct the primary key issue the original one had.
SELECT DISTINCT
t.name...
January 22, 2014 at 8:31 am
Louis, I think this is what I am looking for. Thank you!
David
June 25, 2013 at 4:46 pm
There is no aggregated data here. The results from this query would be a 5 rows with 5 columns. I just need to have 1 row with with...
June 25, 2013 at 3:02 pm
The "Y" value is actually queried from the database and could be either "Y" or "N".
January 24, 2013 at 7:21 pm
We want to do it in sql and store the average of each ping in a table along with the host name and times tamp.
January 14, 2013 at 1:50 pm
Ah, that is on the first page. Sorry I missed that. Thank you!
🙂
November 29, 2012 at 6:07 am
Spot on my friend. Now, what is the best approach to this? Resources and code examples would be great. Thank you!
November 29, 2012 at 6:02 am
The final XML data will be stored in an xml file and sent and fed into another off site 3rd part application.
November 29, 2012 at 5:56 am
So is it best to extract relational data in xml format and using another language like c#, apply a style sheet to transform it into the desired format?
November 29, 2012 at 5:41 am
Okay. If I were to obtain a style sheet, is there a good source I can reference with code examples? Thank you for your expertise.
November 29, 2012 at 5:34 am
I am thinking it is XSLT, but not positive. The file is a .xsd and looks like this:
<xs:element name="Person">
<xs:complexType>
...
November 28, 2012 at 10:34 am
Sorry, the data is in relational format, spread across several tables.
November 28, 2012 at 9:17 am
True. Sorry... I am using both 2005 and 2008 but this probably should have been in 2005.
David
October 19, 2012 at 3:02 pm
Viewing 15 posts - 31 through 45 (of 76 total)