Viewing 15 posts - 436 through 450 (of 484 total)
Consider setting up full-text index catalog on this field, and do a CONTAINS query. Much faster.
February 23, 2004 at 12:12 pm
I understood that. That is why restoring a backup is the best way.
Using DTS is like using an 18-wheel semi to go to the corner market for a loaf...
February 18, 2004 at 4:06 pm
I disagree with using DTS like this. DTS is much too slow to use for database copy operations. I would prefer using detach/copy/attach route, as that would only take a...
February 18, 2004 at 1:04 pm
You CAN "lock down" MSDE.
1) Install MSDE into it's own instance. You probably want to name the instance with your product or company name, so someone can tie it back...
February 12, 2004 at 11:10 am
1) MSDE 2000 SP3, MSDE 2000 SP3a, and MSDE 2000 Release A are all the same; Release A has a slightly different setup program.
2) All the MSDE releases (incl 1.0...
February 12, 2004 at 10:06 am
Re: "a clustered index that has been incorrectly set as non-unique."
I hope that you do not mean that just because its clustered index, it must also be unique. You certainly...
February 8, 2004 at 6:20 pm
Yes, MSDE can be used for production environment, as long as you follow MSDE licensing terms (basically, if used for an application developed using MS tools). If loads are low,...
January 29, 2004 at 5:46 am
And in QA, you can always use sp_help <tablename>.
January 28, 2004 at 8:34 am
There are some other products (Embarcadero comes to mind). But, IMO, none that offer significantly greater advantage over MS builtin tools (at least not worth the extra cost). Unlike...
January 27, 2004 at 12:24 pm
Not sure exactly how the msolap is setup on IIS, but if you can get it to run as a IIS Out of Process application, then in Component Services set...
January 27, 2004 at 12:12 pm
Since you mention ASP pages, I assume this is a web application. If your users are authenticated (NT Domain or AD) users, you can use the first or second option,...
January 27, 2004 at 11:56 am
That is true, but the connection info is still being stored in plain text files (.asp file). There have been IIS security holes that allowed retrieving the file as text...
January 26, 2004 at 7:05 am
"The way to go" is to not connect to SQL Server from ASP code. Put all data handling (SQL queries) and "business logic" in ActiveX DLL(s). Pass disconnected recordsets back and...
January 23, 2004 at 8:28 am
This is a link to template file I used on a project for sending table updates to multiple clients. It demonstrates using vbscript to use DMO objects to backup the...
January 20, 2004 at 9:01 am
My preference was to use VBScript and use the SQLDMO and BulkCopy objects, then use error trapping in VBScript.
January 20, 2004 at 7:01 am
Viewing 15 posts - 436 through 450 (of 484 total)