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!

Search results for query: *

  • Users: Kristjan
  • Content: Threads
  • Order by date
  1. Kristjan

    How to: Toll Exception Table?

    Im trying to deal with PGM224 "Toll Exception Table", but there is not a lot of information in the user guide i have for the LDK-100. Where can i find a good manual for the LDK-100? Where can i find a good manual for the PGM224? Im lost because, in the manual show: "Exception table A & B allow...
  2. Kristjan

    How to get the list of current Speed Names configured in LDK-100

    I already read a lot of posts about LDK Spd Editor, but all the aswers are how to make the list or changing the list, but i have and problem. In our LDK-100 (v: 3.7Bd) there is already a lot of {System Speed xxxx} configured (by users around the network), now we need to set a lot of new Speed...
  3. Kristjan

    How to Select all Days of Month GROUP BY Date

    I need totals of a table grouping by date.... My Table is: Empleado_Horas_Labor(....,EMPLEADO,Fecha,Horas_Normales,....) SELECT Fecha,SUM(Horas_Normales) FROM Empleado_Horas_Labor WHERE EMPLEADO = '02-061' GROUP BY Fecha The result is: Fecha...
  4. Kristjan

    Run SQLScript of 10000 > lines?

    The problem is how to run a SQL script > 455 lines. I have MsSQL Server and Delphi 5 and RX library. with the SQLScript component i try to run a script about >1000 lines, but the script runs ok all the time from 1 to 455 lines and the rest of the script was ignored... i also use Query component...
  5. Kristjan

    Execute Script from File?

    how to execute a script from a file in a store procedure? example: -- (* UPD: 08/07/2003 *) IF EXISTS (SELECT name FROM sysobjects WHERE name = 'pr_ExecScriptFF' AND type = 'P') DROP PROCEDURE pr_ExecScriptFF GO --Ejecutar script desde un archivo. CREATE PROCEDURE pr_ExecScriptFF...
  6. Kristjan

    Generate Insert,Update... script

    I know DTS and how use it, but I need to generate the script code for a Table X, like MySQL exports... Example: MyTable has (col1,col2,col3) select * FROM MyTable : col1 col2 col3 ---- ---- ---- a1 b1 c1 a2 b2 c2 a3 b3 c3 SQLServer has something to export this like Insert, etc...
  7. Kristjan

    IBLocal password? In Help Projects Delphi 5

    I'm look for tips in delphi, and find some in Delphi5\Help\Examplesmore specific in Update\pcachup.dpr ... in this project ask for a password for a IBLocal DB, but i don´t know that password... in DBDEMOS is user:sysdba pass:masterkey, this from Delphi5\Demos etc... i think that pass is...
  8. Kristjan

    P.Running Problems (I need a .dll files?)

    I have problems running my projects in windows... the reason is that my projects run in some pc and in others no, i prove this in pc's with same S.O. (ex: win2k prof, winXP, winNT) and in some pc works and in another no. The programs use a database, etc. Some programs use sqlServer, Oracle...
  9. Kristjan

    Export/Import data Without DTS

    I have a problem... need to export data from 4 tables in a DB to another DB, but the problem is that both DB not have any connection, the DB1 doesnt have connection with Internet, or Lan etc. We need to carry the data trough zip drive, cd or another etc. We can´t use DTS, 1. We need to make...
  10. Kristjan

    Select with a TableName by Parameter

    I need help with a procedure... The problem is that i need use a select but the table refered is parameter (variable, etc), and i don´t know how i do this. Example: CREATE PROCEDURE ProcedureName @idvariable int,@NombreTabla varchar(20) AS ... DECLARE @FechaSalida datetime, @FechaEntrada...

Part and Inventory Search

Back
Top