Viewing 15 posts - 301 through 315 (of 921 total)
Unless you exclude (or include in your CategoryRelationship table) any heirarchies greater than two (grandparent), this will not be possible without some form of loop, be it a temorary stack...
December 24, 2003 at 7:06 am
You can buy a product to do this, such as Entegra,OminiAudit, or VigilEnt.
--Jonathan
December 24, 2003 at 6:53 am
From Chip Andrews' (SQLSecurity.com) lockdown script:
USE msdb
REVOKE execute on sp_add_job to public
REVOKE execute on sp_add_jobstep to public
REVOKE execute on sp_add_jobserver to public
REVOKE execute on sp_start_job to...
December 23, 2003 at 2:10 pm
Sub logins(Server As String, DB As String)
Dim objServer As New SQLDMO.SQLServer
Dim objDatabase As New SQLDMO.Database
Dim objLogin As SQLDMO.Login
Dim objUser As SQLDMO.User
objServer.LoginSecure = True
objServer.Connect Server
Set objDatabase =...
December 23, 2003 at 1:18 pm
Pervasive.SQL is actually built on top of the old Btrieve database. When Novell bought SoftCraft (the developer of Btrieve), they wanted a server-side RDBMS application (NetWare Loadable Module) implemented...
December 23, 2003 at 12:14 pm
quote:
I agree also with the normalization aspect as well.Unfortunatly sometimes in the real world (or at least my world ) we...
December 23, 2003 at 9:13 am
I'm uncomfortable with this problem for a few reasons. First, this data is obviously not even in first normal form. This information should be in two tables, not...
December 23, 2003 at 7:44 am
You need to wrap the active point of the log back to one of the first VLFs before you can delete subsequent VLFs. See the following article for an...
December 23, 2003 at 5:57 am
quote:
How much memory can SQL Server 2000 Enterprise Edition use when running on a Windows 2003 Enterprise Edition server?
December 21, 2003 at 8:35 am
http://support.microsoft.com/?id=281642
--Jonathan
December 21, 2003 at 8:05 am
I suspect that the third-party package is using the server as more than just a database server, i.e. they're using it as a file server or application server. When...
December 21, 2003 at 7:44 am
A language has a linear syntax if it can be invoked using character strings.
A non-procedural (or declarative) language is one where the programmer need not determine exactly how to get...
December 21, 2003 at 7:21 am
Thanks, I needed the exercise.
DECLARE @cutoff datetime
SET @cutoff = '20031101'
SELECT pr.Pr_Id, Pr_Name, Su_Name, Tr_Name, PP_Price
FROM Product pr JOIN Supplier su...
December 21, 2003 at 6:04 am
http://support.microsoft.com/?id=243586
--Jonathan
December 19, 2003 at 11:45 am
If you are storing them as eight characters (should use char(8), not varchar(8), BTW), then are they something like '19/12/03' or something like '20031219'? The latter is the ISO...
December 19, 2003 at 11:40 am
Viewing 15 posts - 301 through 315 (of 921 total)