Viewing 15 posts - 12,691 through 12,705 (of 13,446 total)
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...
February 14, 2007 at 9:43 am
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)...
February 14, 2007 at 9:00 am
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...
February 14, 2007 at 5:55 am
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...
February 13, 2007 at 2:17 pm
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...
February 13, 2007 at 12:46 pm
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
February 13, 2007 at 5:09 am
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...
February 12, 2007 at 5:48 pm
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...
February 12, 2007 at 2:53 pm
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...
February 12, 2007 at 8:59 am
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...
February 12, 2007 at 8:28 am
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
February 12, 2007 at 7:43 am
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...
February 9, 2007 at 2:32 pm
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...
February 9, 2007 at 11:00 am
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...
February 9, 2007 at 9:58 am
Viewing 15 posts - 12,691 through 12,705 (of 13,446 total)