Viewing 15 posts - 331 through 345 (of 484 total)
Try this. Instead of:
dmoServerGroup.RegisteredServers.Add(dmoRegServer)
try:
dmoServerGroups("TAMPA").RegisteredServers.Add(dmoRegServer)
Picked this up in an old thread on microsoft.public.windows.server.migration. I copied your script and got it to fail on my machine, but it worked making this...
October 4, 2005 at 8:44 am
Just to be safe, I would add to Glenn's code, just before the end of the loop, to clear out the dmoRegServer variable with "Set dmoRegServer = Nothing".
October 4, 2005 at 7:16 am
I beleive that in older versions of Windows server systems, you could authenticate using the same-name user on two different servers as local users. (Definitely in NT4 and Windows 2000) ...
September 29, 2005 at 11:51 am
Have you checked with Experts-Exchange.com? They have helped me quite a bit in that area.
September 29, 2005 at 11:45 am
You can install SQL Server Client tools as often and on as many machines as you would like or need. Client tools do not need SQL Server licenses to manage the...
September 29, 2005 at 11:43 am
SQL Server not good for document storage?
Don't tell that to the SharePoint development team, Visual Studio Team System team, or the WinFS team. All those MS projects/products use SQL Server...
September 29, 2005 at 11:37 am
1) Depending on the installation method for the Access 97 application, it should not have installed Access 97 runtime if Access 2000 runtime was already installed. Proper installation programs (MS,...
September 29, 2005 at 11:19 am
Gregory;
I assume when you say "..printed from dataset.InsertCommand..." you mean "...printed from dataAdapter.InsertCommand...". That is the SQL that will get run.
Also, check that Parameters collection for the DataAdapter, that the...
September 28, 2005 at 6:59 am
I have to agree with the majority of the poster's here that GenericLookup tables are usually bad idea. I have used them on a rare occasion to fix a particular...
September 27, 2005 at 8:04 am
This would depend on how the application is architected. In systems I design, I almost always build multiple tiers in the system, and I will want (if possible) to put...
September 15, 2005 at 7:05 am
I have set up this plan for several clients. It's easy, simple, and works for 1 to multiple servers:
September 14, 2005 at 6:41 am
Your SQL Server installation is installed with Mixed Mode Authentication. The IDs that you are creating in SQL Server exist in SQL Server only, and do not have any relation or...
September 13, 2005 at 8:50 am
To answer your question directly: No, I am not sure how to change the port without using Server Network Utility.
But, will you need any ports open? If I understand you...
September 13, 2005 at 8:33 am
Having done this in several projects, I always seem to forget to give it a file name. Did you remember to do so?
Response.Buffer = True Response.Clear() Response.AddHeader("content-disposition", "attachment; filename="...
September 12, 2005 at 8:54 am
PK;
In your nested functions line in your join, is that a typo only in this posting, or do you have the same in your query? I am looking at the...
September 12, 2005 at 7:44 am
Viewing 15 posts - 331 through 345 (of 484 total)