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. macsql1

    Convert Comma separatedNumber to Name in PL SQL

    One more update BookCollection_ID is VARCHAR2 NOT integer. CREATE TABLE BookPart ( BookPart_ID INTEGER NOT NULL, LIMIT_MAX VARCHAR2 (255), BookCollection_ID VARCHAR2 (255), PRIMARY KEY (BookPart_ID )
  2. macsql1

    Convert Comma separatedNumber to Name in PL SQL

    one more update I have replaced ` to ,(comma) then try to render "1,2" as "ToyBook,FunBook" in result replace('BOOKCOLLECTION_ID', '`', ',')
  3. macsql1

    Convert Comma separatedNumber to Name in PL SQL

    Yeah. I want to render BookCollection_ID (1,2) value as (ToyBook,FunBook). BookCollection_ID is manually enter by user like 1,2 or 2 or 1,2,3 BookPart BookName_ID----Book_NAME-------BookPart_ID 1---------------ToyBook---------88 2---------------FunBook---------99...
  4. macsql1

    Convert Comma separatedNumber to Name in PL SQL

    Hello- I have two tables. How I can cast BookCollection_ID number to Book_Name? Please help Select A.BookCollection_ID from Bookpart A, BookName B where A.BookPart_ID = B.BookPart_ID OutPut 1,2 Expected OutPut ToyBook,FunBook We need to separate 1,2 and extract Book_NAME from BookPart table...
  5. macsql1

    Update concatenation records in sql server 2005

    Good Morning, Using SQL server 2005. I have 200 records and want to update ALL field with URL along with GUID where GUID is unique for every record Here '<a href=https://testlog.com/main.aspx?id={926849y2-K6Y4-D11-L692-80927B2M03E2}>GroupOne</a>'is constant and would like to insert GUID...
  6. macsql1

    XLS to XML convertion

    Hi Dian, huh i was missing :) well when i hit save as got following dialog box. Is there any way to export both the data and the VB code to XML? Thank again ====================================================================== The following features from your workbook will not be saved in...
  7. macsql1

    XLS to XML convertion

    Hi, How to convert .xls file to XML. I have office 2003 and want to convert bookslog.xls file XML format, here bookslog.xls file contain 3 worksheets. Thanks in advance. mac
  8. macsql1

    One month records only Sql Server 2005

    Hi, I want records for only one month, between 1st January 2007 till 31st January 2007. I written following query, but output also gives for January 2008 and 2009 using sql server 2005. Kindly help.. select convert(varchar,LastDate,101), * from Table1 where (convert(varchar,LastDate,101) >=...
  9. macsql1

    Simple Select stmt : Subquery returned more than 1 value

    Hey whosrdaddy, You are also a Star. why am not able to mark you as Star.
  10. macsql1

    Simple Select stmt : Subquery returned more than 1 value

    I have 2 tables Division Table DivisionId (Pk, uniqueidentifier,not null) DivisionName (nvarchar) DivisionLocation(nvarchar) Region Table RegionId (Pk, uniqueidentifier) RegionName (nvarchar) RegionManager(nvarchar) RegiondivisionID (FK,uniqueidentifier,null) Here i need the name of division...
  11. macsql1

    Column contains more than one record: sql server 2005

    Thanks George, I got expected result: Name ID ---------------- Lina 111 BOb 124 I have an another table where i have to map the id, pull multiple records from "StreetCentral" table Here Oprid is primarykey in StreetCentral table and Id is FK in Street table ---------- select...
  12. macsql1

    Column contains more than one record: sql server 2005

    Hi, I have three columns. however i would like to list common records. i.e.111 and 124 which appears in multiple time. How to figure out the name/id which is > 1. Using sql server 2005. Table : Street Name ID Street Name -------------------------------- Lina 111 Randolp Rosy 123 Lake BOb...
  13. macsql1

    How to Isolate value through sql query

    Hi All, I have a question. Using sql server 2005. A table with 3 column, where column1 contains data in numeric(1234)then one space followed by alphabets(Book). I need to separate Column1 value to Column2 and Column3. eg1. Column1: 1234 Book (Output ) Column2: 1234 Column3: Book eg2...
  14. macsql1

    Copy IIS log file one server to another server

    Thanks for reference. Daily ONE new log file is created, and i want to copy new file to another server which is in same domain. -mac
  15. macsql1

    Copy IIS log file one server to another server

    Hi, I have been trying to get a vbs file that would COPY my latest IIS log files to another server after the file has reached 24 hours of age. Using window 2003 server. Path = "C:\WINDOWS\system32\Logfiles\W3SVC1" Destination path: \\206.134.11.23\temp Thanks in advance!!! -mac
  16. macsql1

    How to Update Multiple Column from Single column sql server 2005

    Hi, Got this error during Parse, Something missing ? Msg 156, Level 15, State 1, Line 5 Incorrect syntax near the keyword 'SET'. UPDATE TableTest SET Two = CASE WHEN One = 2 THEN 1 ELSE Two END, SET Three = CASE WHEN One = 3...
  17. macsql1

    How to Update Multiple Column from Single column sql server 2005

    Ohh, its my mistake, Now the structure is like below, How we can minimize the query. i want to write single UPDATE command which will all columns update tabletest set two = case when one = 2 then 'True' end from tabletest update tabletest set three = case when one = 3 then 'True' end from...
  18. macsql1

    How to Update Multiple Column from Single column sql server 2005

    Sure, Appreciate your prompt response. For Columns: TWO, Three, Four, Five Data Type = bit allow nulls: Yes For Column: One Data type = int allow nulls: Yes mac
  19. macsql1

    How to Update Multiple Column from Single column sql server 2005

    Thanks for you update, This is only one time update on database. Error with Example:( update tabletest set two = case when one = 2 then 'True', case when two = 3 then 'True' end from tabletest

Part and Inventory Search

Back
Top