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 TouchToneTommy 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: *

  • Users: NoKeS
  • Order by date
  1. NoKeS

    Sound in a page

    the funcion is onLoad property! i'v try to put it onActivate, on Reload... etc... do you know why the sound is always begining when i click on a link? Thanks for the tip of the gallery.
  2. NoKeS

    Sound in a page

    the page is www.chetuning.com
  3. NoKeS

    Sound in a page

    hi, i'm working with templates in dw, and i want to put a sound in the page, every time i click on a link the sound starts from the begining, and i want that the sound start and finish just one time when i enter in the page! how do i do? URGENT! Thanks.
  4. NoKeS

    Database (Exists)

    If that can be found, can you tell me where I can find the solution for my problem?? Yes... because I've already searched and i've not found nothinhg that revolved my problem.... I want to create the tables in the destiny database only if the tables doesn't exist. If the tables exists in the...
  5. NoKeS

    Database (Exists)

    I can't find how to do this in the msdn online
  6. NoKeS

    Database (Exists)

    The code is this: And I want to create the tables in the destiny database only if the tables doesn't exist. If the tables exists in the destiny database it give's me a PRINT message 'The table database already exist', and only copy the databases that doesn't exist. HELP ME PLEASE!!! I HAVE TO...
  7. NoKeS

    Database (Exists)

    What is the master database? Sorry for the question but i'm a little bit "lammer" in SQL. I'm a trainee.
  8. NoKeS

    Database (Exists)

    HI, I want to know the code to see if a DataBase is already in the Server. Exemple... If the database that I want to create (by code) is in the server, and if already exists I want to put a print on the screen, HELP ME PLEASE!
  9. NoKeS

    Copy Database

    What program???? I have to do it all by code!! SQL CODE!!
  10. NoKeS

    Copy Database

    SQL CODE. The database is in the same server. I want to copy all items of one database to onother database, including data. SQL Version = 8.0
  11. NoKeS

    Copy Database

    HI, How do I copy all tables and all procedures from a database to another, (all by code). HELP ME PLEASE!!!
  12. NoKeS

    Copy Table

    Hi, whats the code to copy tables that are in one database to another database?? Databases Name: FORMACAO3 - SOURCE DATABASE FORMACAO3AUXILIAR - Destiny Database URGENT!!!
  13. NoKeS

    Numbers

    How do I do to turn this: A dívida do Cliente é: 18450 $ESC A dívida do Cliente é: 83.86363636363 $USD A dívida do Cliente é: 603.67110558518 $FFR Into: A dívida do Cliente é: 18450 $ESC A dívida do Cliente é: 83.86 $USD A dívida do Cliente é: 603.67 $FFR
  14. NoKeS

    Variable

    I want to put the result of this code into a variable called @Factor: Like Select @Factor = select Factor from Moeda, Pedido Where Moeda.Moeda='USD' And Pedido.Abertura=Moeda.Data And Pedido.Fecho is Not Null How do I do??
  15. NoKeS

    Data Type

    HI, I want to insert a value in my table in dollars and in escudos wich is the code for it? Help me please! The code that I have is: Create Procedure InserirPreco ( @Artigo_ID bigint,-- PRIMARY KEY Not Null, --@DataPreco datetime, @Preco smallmoney ) AS Insert into ArtigoPreco...
  16. NoKeS

    Data Type

    Can you send me the code to do it please? I'm a newbie in SQL, and i'm serve as apprentice, and i have to do this work! Can you help me please?
  17. NoKeS

    Data Type

    Yes but next when i insert the value 0.57 it show me 0.570 and i want 0.57
  18. NoKeS

    Data Type

    and if i want to put in one field the value 1.053 and in another 0.48 it does'nt work... i show me in one 1.05 and in the other .48 I have to do this work until 6.00 pm. URGENT! Really Tanks.
  19. NoKeS

    Data Type

    and if i want to put in one field the value 1.053 and in another 0.48 it does'nt work... i show me in one 1.05 and in the other .48 I have to do this work until 6.00 pm. URGENT! Really Tanks.
  20. NoKeS

    Data Type

    I've already tried to use decimal but now when I insert 0.48 it show me the result 0. What do I have to do? the code is: Create Table Moeda ( Data Datetime, Moeda varchar(10), Factor decimal, CONSTRAINT Data_Moeda PRIMARY KEY (Data, Moeda) ) Drop Procedure InserirMoeda Create Procedure...

Part and Inventory Search

Back
Top