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 bkrike on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Recent content by Fatih235

  1. Fatih235

    convert the rows to columns

    Isnt there an easier way to do this?
  2. Fatih235

    convert the rows to columns

    hello i have a table called test. This is the table, test_id test_date test_description 1 1/1/2001 test1 2 2/1/2001 test2 3 3/1/2001 test3 I want to get the results like this, test_id 1 2 3 test_date 1/1/2001 2/1/2001...
  3. Fatih235

    content addition to a text column

    hey all; i have a column "story" which is text datatype.It has some content in it. I would like to do this; update story_table set story=story + 'blah blah blah' where story_id in(1,2,3) i am getting an error of datatype error. How can i fix it?
  4. Fatih235

    can not use enterprise manager

    getting the same error :(
  5. Fatih235

    can not use enterprise manager

    hey all; i knew that sql server 2000 developer edition would work on xp home as an actual server so i bought it and set it up. When i try to connect to the server that i defined during the setup i get an error message saying "A connection could not be establisked to LOCAL&quot...
  6. Fatih235

    Hey all; can someone tell me wha

    the erro says "Compiler Error Message: CS0117: 'ASP.Login_aspx.Login' does not contain a definition for 'username'"
  7. Fatih235

    Hey all; can someone tell me wha

    Hey all; can someone tell me what the problem is here? <%@ Page Language=&quot;C#&quot; %> <%@ Register TagPrefix=&quot;KUTI&quot; TagName=&quot;Login&quot; Src=&quot;Login.ascx&quot; %> <script runat=&quot;server&quot;> public abstract class Login : System.Web.UI.UserControl {...
  8. Fatih235

    sql server 2000 developer edition

    i saw that it can run on XP home,but can it run just as a sql server client or as an actual server? thanks for your answers.
  9. Fatih235

    sql server 2000 developer edition

    i have a windows xp home edition pc at home.i would like to run sql server database on it and develop some applications. Can i be able to do that with sql server 2000 developer edition? thank you.
  10. Fatih235

    Hey all; I have a quick question

    Hey all; I have a quick question. I have a column car_year as varchar. How can i run this query without changing the original datatype of column_car in actual table. select plate_number,VIN#,car_year where car_year>1998
  11. Fatih235

    String manupulation

    Hi all; I have a column called news. In every row of this column there is a news approximately 150 chars long. Each of these rows contains the word &quot;exactly&quot;. I want to select 20 characters before &quot;exactly&quot;, the word &quot;exactly&quot; and 20 characters after...
  12. Fatih235

    Just cant do anything with this.

    Hi all; I have SQL Server 7.0 on my stand alone pc.When i want to work on SQL(creating databases,tables etc.) it automatically tries to connect to a server and it fails of course(cause i dont have any server attached to my pc).I cant do anything about it.Any suggestions? Thanks.
  13. Fatih235

    Should be too easy

    Hey all; I have a very simple question.I am using Access for database and now i put a password to it to make it secure. What is the syntax to implement this password in my asp pages so that database interactivity can be done?My existing code is ; Set...
  14. Fatih235

    very easy but i stucked

    for instance i have 1256 rows in a column,how am i supposed to select in a row for the transpose?is there a more practical way?
  15. Fatih235

    very easy but i stucked

    I have a column like this; aaa bbb ccc ddd and i want to write it in a row like aaa,bbb,ccc,ddd how?

Part and Inventory Search

Back
Top