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

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

    Stored procedure: "select @var"

    Dear all, Using sql server 2005. We are busy with a stored procedure. Please look at the code: declare @var varchar(10), @nr varchar(10) set @var='field1' set @nr = (SELECT @var FROM myTable) In the table is only one record. The result of Print @nr: 'field1' Is it possible that the sp is...
  2. solo1234

    if select a field with 0 we don't want to see .00

    Dear all, We are busy with selecting a a table with data type Money and using the next statement: SELECT CASE moneyFld WHEN 0 THEN 0 ELSE Cast(moneyFld as Numeric(10,2)) END AS moneyFld from tbl_x Field values zero are displayed as ".00", can someone tell us how to show a real zero? ("0")...
  3. solo1234

    Using a temporary table

    Dear all, Is there any difference in speed using a temporary table or a normal table in sql server 2000. for example; select * into #temp from any_table When any table has a lot of records, is it faster to use #temp or the any_table. Nice regards, Michelle.
  4. solo1234

    Insert into float field

    Dear all, We have a string (float value) (komma as decimal sign) and we want this string into a floating field. We tried: insert into DB (floatField) values (CONVERT(DECIMAL('12,1'))) insert into DB (floatField) values (cast('12,1' as double)) insert into DB (floatField) values (cast('12,1'...
  5. solo1234

    Inserting a image into sql server 2000

    Hello everybody, Configuring fields into a table of sql server 2000 you can to select an image. Can someone tell us how to insert an image into such a field. We can calculate the the binary string of an image. Nice regards, Michelle.
  6. solo1234

    Backup to an other server

    Dear user of sql server 2000, We are busy to make a backup to an other server, we did the next things: 1) We made a shared drive on the target drive on the server where the sql server is running, for example: Z:. 2) test via the explorer or the z: drive is writable: is ok. 3) Configuring the...
  7. solo1234

    How to insert record into table other database

    Hello all, We are busy with a trigger in sql server 2000. The results of a select we want to insert into a table in an other database. Can someone give us script how to do this? In a trigger is it not allowed to use the "Use" command!! Nice regards, Michelle. Example: use xx declare...
  8. solo1234

    update trigger

    Dear all, How can we find out in a update trigger script which record is updated? For example which record_id? Nice regards, Michelle. script: CREATE trigger dbo.update_indicator on dbo.Products after update as print @@ROWCOUNT
  9. solo1234

    sql server with client

    Hello everybody, We are searching for good documentation or pdf file to create a network with one pc with the sql server installed and a lot of clients who are using this sql server. Hope you can help us. Nice regards, Michelle.
  10. solo1234

    How to get access to a remote sql server 2000

    Dear readers, We have the next situation: Pc-A: Installed XP Ip address 192.168.10.1 Installed sql server 2000 Pc-B: Installed XP Ip address 192.168.10.2 Both computers can be pinged and directories can be shared from pc-A < > B. Installing sql server 2000 on the pc-B, choosing for “remote...
  11. solo1234

    include_once points to an other directory

    Hello PHP users, In my script I am using the next script: include_once('a.php'); The functions in a.php can't be called because 'a.php' is located in an other directory. I tried: include_once('../pages/a.php'); include_once('..//pages//a.php'); include_once('..\pages\a.php')...
  12. solo1234

    Is there a leave event?

    Hello all, Because we want to know how long a visitor was on our site we need an event for closing / leaving our site. What are the possibillities to get this information? Regards, solo1234.
  13. solo1234

    how to get information from the object event

    Hello vb dotnet users, Via a class we can create pictureboxes and an event. Interesting is to know in the event what is the name or position of the object what caused the event. Used code: Public Class PlaatsPictureBox Private Shared ipb_count As Integer = 0 Public Shared Sub...
  14. solo1234

    click event in code for new button

    Dear vb dotnet users, Via a class we can make a button but how can be an event inserted? Hope you can help us. Michelle. Used code: Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load create_button.setButton(Me) End Sub...
  15. solo1234

    Creating picturebox via a class

    Hello everybody, We are trying to get a picturebox on a form via a class. The reason is that we need sometimes more then one time the same picture on the form. The mouse pointer must give the picture the right place. Can someone tell us how to make the syntax because the next doesn't work...

Part and Inventory Search

Back
Top