Viewing 9 posts - 76 through 84 (of 84 total)
If you post a script of your stored procedure someone may be able to help. It sounds like you are not referencing it or it's parameters correctly.
November 15, 2005 at 7:50 am
You can save the following code as a VB-Script (.vbs), and execute it like a .BAT file. Or, execute the code using DTS, or as a Scheduled Task. You don't have...
November 9, 2005 at 1:01 pm
Here is a VB example using SQLDMO to list the server groups and their registered servers (there are many other collections that may be looped through such as Logins, Databases,...
November 8, 2005 at 2:32 pm
Using the SQL-DMO object library you can programmatically loop through server and object collections to achieve the result you want.
November 8, 2005 at 8:35 am
When scripts are generated using EM the first thing generated are the IF EXISTS... DROP [object] commands for the objects that need to be recreated.
If you execute your script once in...
November 4, 2005 at 7:54 am
You can set the row limit programmatically using VBA per the following examples.
To limit the number of rows sent to the client to 100:
Application.SetOption "Row Limit", 100
To allow unlimited...
November 3, 2005 at 7:32 am
Here is a version of your code that will give you the output specified in your original code, providing the connection string is valid and CHIL0708A1 is a table or...
October 21, 2005 at 8:00 am
I am using "XSql Object Compare" to keep databases in sync. It is doing a great job.
October 20, 2005 at 7:49 am
Store the maximum length in the controls .Tag property and insert this code into each forms class module:
Private Sub Form_KeyDown(KeyCode As Integer, Shift As Integer)
'we eliminate key strokes causing controls...
October 14, 2005 at 8:45 am
Viewing 9 posts - 76 through 84 (of 84 total)