Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. Silverstone

    XML serialisation and output format

    Perfect, thanks. I've got it working as needed now. I actually expected using the writer to be harder than it was! Thanks again.
  2. Silverstone

    XML serialisation and output format

    I'm pretty new to C# so bear with me if any of this is obvious! I'm writing a windows form which is bound to an XML data source. The destination for this XML is an IBM z\OS Mainframe as script in testing an application. (Not my choice!) I've got it all coded and working fine but there are two...
  3. Silverstone

    'Help Column' for multiple views

    I'm looking to get column information back for multiple views within the same database, rather than having to go back to numerous databases to find the source tables. I want to automate the process so that it will look at all views within the DBC.Tables view, for the database i specify. I know...
  4. Silverstone

    Transpose table?

    ok, forget it. I found the faq now!!
  5. Silverstone

    Transpose table?

    Does anyone have any code which i can use to transpose columns in SQL. E.G id value 1 100 1 200 2 300 becomes id value1 value2 1 100 200 2 300 I can do it in SAS but we need to be able to do it in SQL too. thank
  6. Silverstone

    Which query is more efficient?

    Hi all, I recently submitted the below query, the goal of which was to get copies of duplicate records on my table: SELECT * FROM credpol.q7rl_legal_entity a INNER JOIN ( SELECT prdid , COUNT ( * ) FROM credpol.q7rl_legal_entity GROUP BY prdid ) AS tmp ( prdid,cnt ) ON a.prdid...

Part and Inventory Search

Back
Top