Forum Replies Created

Viewing 15 posts - 12,691 through 12,705 (of 13,446 total)

  • RE: DLL''''s function results into SQL server.

    I think that's my next step.... I was looking for an easy sleazy way to get results from any old DLL, but I think I'll have to slap together an...

  • RE: HELP with error ''''80020009''''

    you didn't post any changes, so I'm assuming you are still not checking for nulls.

    add this function to the page:

    Private Function tnull(s) As String

        If IsNull(s) Or IsEmpty(s)...

  • RE: SQL image data type to jpeg

    in that case, here's an example from vb6: create a form, slap a button on it, and have the button call this function.change the SQL statement to your table, and...

  • RE: Error handling Problem- What am I doing wrong ?

    Also you've got to watch for the problem where if an error is level 16 or above, execution stops PERIOD... so it would never go to the log stuff.

    so if...

  • RE: Secure FTP Batch File Problem

    Man you've already covered the basics, I see;

    Ok, i'd look at file attributes , file locking, and finally folder security... gotta cover the basics.

    any chance that the folder or the...

  • RE: Secure FTP Batch File Problem

    i'm guessing that the username that is used to run SQLJobs doesn't have rights to the F:\ScriptedFiles\Oracle\DownloadedFiles folder;

    is this a mapped drive? try changing it to a uncpath: ie

  • RE: How to find User Connections

    i know for SQL 2000, there's an applet in the control panel: Start>>Control Panel>> SQL Server Licensing Setup;

    mine says Processor License for 2 Processors, and doesn't have the ability to...

  • RE: SQL image data type to jpeg

    not natively in SQL server; there's no implicit conversion funcitons in SQL for images.

    you have to farm it out to a .NET object for example, convert it, and then put...

  • RE: Function to cast an integer to a varchar where 1 = A, 26 = Z, ...

    there are a lot of script contributions that do decimal to hex and hex to decimal for example, but non of them have the exact format you are looking for;

    take...

  • RE: No. of connections to the SQL Server

    I agree with Colin; Server does not exist or Access Denied.  is typically the application cannot connect, and has nothing to do witht he number of allowed connections.  A different...

  • RE: How to find User Connections

    because spids that are below 50 are system processes, i usually use this for the rough guestimate:

     

    select count(*) from master.dbo.sysprocesses where spid >=50

  • RE: Help

    did you create a program called HTTP.exe?

    that is the error you are getting.

    maybe it does exist, but it's not in the path of the server when it's run?

    maybe something like...

  • RE: schedule a trace

    I hope this helps:

    open profiler( Start>>Run>>Profiler)

    File>>New>>Trace Template

    Add all the Events, Data Columns and Filters you want to capture.

    Save the Trace Template.

    Test the template by doing Start>>Run>>Profiler.exe C:\PathToTemplate\YourTrace.tdf

    if it seems...

  • RE: Consolidating Multiple Stored Procedure Results

    i think something like this, which does it all in one fell swoop, is what you are after:

    there are three virtual tables, x1,x2,x3, which are really the big select statements...

  • RE: xp_cmdshell can''''t execute VBS

    ok, I see the issue is that you need an inet control to read a web page....no problem...so i built a dll in vb6 with just one public method.

    a .vbs...

Viewing 15 posts - 12,691 through 12,705 (of 13,446 total)