Viewing 15 posts - 361 through 375 (of 484 total)
All you need to do is run the setup program for SQL Server. On the options dialog, it will ask if you want to install a default instance (this will...
May 3, 2005 at 9:28 am
Glad I could help.
April 22, 2005 at 6:08 am
Nice one, Shane. I had not heard of those tokens before, and had always written code to get those values (like time stamping a backup file). Just goes to show...
April 20, 2005 at 11:01 am
A little more direct than using the full maintenance plan wizard is to use the sqlmaint utility. Check the paramaters in BOL. You can specify all you need, without having...
April 20, 2005 at 6:22 am
It would be much easier not using DTS at all. First setup the AS/400 as a linked server. Then write a stored procedure that reads your log able and, in...
April 20, 2005 at 6:18 am
I think you're problem is trying to store a null in a Session variable. That cannot be done. You must have some code elsewhere that sets the dataset column value...
April 14, 2005 at 4:34 pm
I would recommend using the either the maintenance plan or sqlmaint program, so that you easily have named backups with date/time embedded. Do a full backup once a day, as...
April 13, 2005 at 10:38 am
It sounds like in your web application, you are using ADO recordset to add/update records, and you are putting a value of 0 (zero) in the data field. Try to...
April 13, 2005 at 10:24 am
By default, MSDE SP3 will not install any network protocols (TCP, named pipes, etc). You will always be able to connect on the same machine using Shared memory protocol. If no...
April 13, 2005 at 10:18 am
I know that the quickest way to refresh these table would be to use DTS.
I would disagree with that. The quickest way, especially from code, would be to use...
April 12, 2005 at 4:58 am
Use the Client Network utility.
March 28, 2005 at 7:38 am
You might have two instances of SQL Server on your machine (which is legitimate, SQL Server Std/Personal/MSDE allow up to 16 instances). Or you might have one instance and registered...
March 25, 2005 at 1:56 pm
Viewing 15 posts - 361 through 375 (of 484 total)