backup

Technical Article

RE: Licensing mode

  • Reply

Sorry, I was wrong. Once the license mode is set, you can't change the modes but you can add seat or processor licenses from control panel --> SQL Server 2000 Licence setup. But you still can change it by change the registry. '0' for 'per seat' and '2' for 'per processor'. HKEY_Local_Machine\Software\Microsoft\Microsoft SQL Server\80\MSSQLLicenseInfo\MSSQL8.00

2003-08-22

1 reads

Technical Article

RE: Where i can find DTS in the hard drive ?

  • Reply

DTS packages are kept on the server but you can save them (design package/ save package as) to a local or network drive as a visual basic package (.bas, a text file which can then be added to stuff like MSAccess to execute). You find them in Enterprise Manager under Data Transformation Services.

2003-08-18

1 reads

Technical Article

RE: QOD 15-8-2003

  • Reply

In practice, yes, you are correct. Part of the frustration is the following when you set c2 (even to the same value it was previously): quote: DBCC execution completed. If DBCC printed error messages, contact your system administrator. Configuration option 'c2 audit mode' changed from 0 to 0. Run the RECONFIGURE statement to install. When […]

You rated this post out of 5. Change rating

2003-08-15

Technical Article

RE: Anyone point me in the right direction?

  • Reply

What you need to do is create a store procedure which accepts a date as parameter. Then using a where clause filter out the records for this date. Then use the group by command and group by customerid. e.g. use northwind database select shippername,sum(extendedprice) from invoices where requireddate='1996-10-23 00:00:00.000' group by shippername Relationships are like […]

You rated this post out of 5. Change rating

2003-08-08

Technical Article

RE: Recursive instead-of-delete triggers

  • Reply

Will this help If exists (select * from dbo.sysobjects where id = object_id(N'[dbo].[Parent_Child_Delete]') and OBJECTPROPERTY(id, N'IsTrigger') = 1) drop trigger [dbo].[Parent_Child_Delete] GO If exists (select * from dbo.sysobjects where id = object_id(N'[dbo].[Parent_Child]') and OBJECTPROPERTY(id, N'IsUserTable') = 1) drop table [dbo].[Parent_Child] GO CREATE TABLE [dbo].[Parent_Child] ([Parent] [int] NOT NULL ,[Child] [int] NOT NULL) GO ALTER TABLE […]

You rated this post out of 5. Change rating

2003-07-21

2 reads

Blogs

SQL Saturday Boston 2024 Slides

By

Thanks to everyone that came to my talks. Slides are below. Best Practices for...

Small Data SF 2024

By

I can’t remember how I heard about Small Data SF 2024, but it caught...

A New Word: Moledro

By

moledro – n. a feeling of resonant connection with an author or artist you’ll...

Read the latest Blogs

Forums

7 sept, scheduled book

By philip.scott

Comments posted to this topic are about the item 7 sept, scheduled book

7 sept, schedlued article

By philip.scott

Comments posted to this topic are about the item 7 sept, schedlued article

6 sept, published book

By philip.scott

Comments posted to this topic are about the item 6 sept, published book

Visit the forum

Question of the Day

Azure Data Lake Storage Gen 2

Azure Data Lake Storage Gen 2 is built on ...?

See possible answers