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: aolb
  • Content: Threads
  • Order by date
  1. aolb

    Security issues running Cryst Reports in ASP.NET

    I have written a web application which embeds crystal reports into ASP.NET (1.1 framework). I have no issues running the reports on my development machine where all the SQL Server 2000 db is located but when I deploy to the test and live servers where the SQL Server db is located on a different...
  2. aolb

    Security issues running Crystal Reports in ASP.NET

    I have written a web application which embeds crystal reports into ASP.NET (1.1 framework). I have no issues running the reports on my development machine where all the SQL Server 2000 db is located but when I deploy to the test and live servers where the SQL Server db is located on a different...
  3. aolb

    get a datagrid value in c#

    Sorry for the stupid question but I have been looking for a while to get the syntax. What is the c# syntax for getting a value from a selected datagrid? the vb is "dg.Items.Item(1).Cells(20).Text
  4. aolb

    Is there a max number of processes (SPID)?

    I have a web application because of the way people can quit out of it, their connection to SQL Server remains (SPID). I have written a proc that will run during the night to kill the SPID processes, however I am worried that during the day I might hit an upper limit of SPID processes and the...
  5. aolb

    Changing Crystal Report XI group at runtime using VB.NET?

    I have not used Crystal for a few years, however last time I did I created an application embedding Crystal Reports 8.5 into an ASP interface. In that application I could change the groups of the reports at runtime, I believe it was the command AddGroup. Can I do the same in ASP.NET using VB...
  6. aolb

    Connection issues to local install when changing network

    I have installed MySql version 5.0 locally onto my laptop. I have problems when I change locations from the office to home, "Could not connect to specified instance. MySQL Error 1045 Access denied for user 'root'@'localhost' (using password:YES)" I have a static ip address at work and but not...
  7. aolb

    dts package question

    I have 2 dts packages that use a query to get just under 16,000 records from an ORACLE view that uses 5 tables and has just under 100,000 results I have an ORACLE view that uses 5 tables and returns just under 100,000 results. I have 2 dts packages that use the same query that returns just...
  8. aolb

    DTS package import issues

    I have 2 dts packages, one dts package imports data from a sql server db and the other imports data from an ORACLE db. Both dts packages can be executed from sql enterprise manager. The problem is that when I schedule the packages with a job, the SQL Server import dts package works fine but the...
  9. aolb

    passing data from a user control

    I am new to asp.net. I have created a user control that has a text tox in it and I have put it onto a web form. (I am doing this with a reference book in one hand!) When I run it I get the user control loaded onto my form ok, The buttons do what they are suposed to do and the text box gets...
  10. aolb

    Intermittent problem with querying a table

    We have a problem with one of our tables that has started to occur. The table has about 4500 records and when it is queried select * from xxx it hangs. When we select count(*) from xxx it returns instantly. When we stop and restart the SQL Service the problem stops only to return the next day...
  11. aolb

    Intermittent problem with querying a table

    We have a problem with one of our tables that has started to occur. The table has about 4500 records and when it is queried select * from xxx it hangs. When we select count(*) from xxx it returns instantly. When we stop and restart the SQL Service the problem stops only to return the next day...
  12. aolb

    where can I find the current job status in the msdb tables?

    I want to write a query that returns if a specified job is currently running. I expect to find this data in the msdb.dbo.sysjobs or msdb.dbo.sysjobhistory tables but nothing jumps out as the field I want. Can someone tell me what field and table I need to return the current job status? Thanks
  13. aolb

    Creating a temp table from the results of a query executed within a pr

    I am using SQL Server 2000 and I want to report on the steps in a job by using a query. There is the procedure sp_help_jobhistory in the msdb database which returns what I want but I need to put the results into a temp table to be able to use them. Is there a way of creating a temp table from...
  14. aolb

    view problem in analyser object browser

    I have this view. When I select the view in the object browser in the query analyser I can’t see the columns. When I try to open the view in the analyser it get an [Microsoft][ODBC SQL Server Driver][Timeout expired]. When I run the view as a query it works. Any idea what’s going on and how...
  15. aolb

    Query to return job history

    I would like to write a query returning job history data. does anyone know where this data is held? I have just had a quick look at the master system tables and there is nothing obvious. Maybe there is an stored procedure?
  16. aolb

    connection string changing for not apparent reason

    We have a .net solution that has many projects and uses DPAPI Encryption on the connection string. When I am running in debug I can see that the connection string is as expected the first 9 times it is called but then changes to the live connection string for no apparent reason. Have checked...
  17. aolb

    Error 1706. No Valid source could be found for product Visual Studio

    Has anyone had this problem? When I try to create a Release version of my solution in Visual Studio I get a message it looks like windows is trying to install some components: “Please wait while Windows configures Visual Studio .NET Enterprise Developer 2003 - English” After a couple of...
  18. aolb

    Data Binding vrs Unbound Controls best approach?

    I am very new to vb.net and I want to start down the right path. In the past when I have built applications in VBA I always used unbound controls. Should I use this approach with vb.net or should I go with data binding the controls?
  19. aolb

    Insert query taking forever to run and no obvious reason

    I am generating insert queries and then executing them. On this insert query it is taking 1 second to query 100 records but almost 30 seconds to insert 100 records. a different generated query which is basically the same inset query inserting into the same table but getting the data from a...
  20. aolb

    Insert query hanging for no obvious reason

    I have written a procedure that generates queries and executes them. The problem is that I have 2 insert queries that are generated that insert into the same table and are basically the same except I that am using a different view for each. The first insert query, which is the Computers query...

Part and Inventory Search

Back
Top