Viewing 15 posts - 6,751 through 6,765 (of 7,472 total)
can you post the full ddl of the table/indexes/triggers ?
Just to check : There is an index defined for PoliID ?
January 19, 2005 at 12:41 am
An other difference is that nonclustering indexes have the actual RID (page-row-address) when there is no clustered index defined for the object.
If there is a clustered index defined, it contains a...
January 19, 2005 at 12:34 am
How about :
Set Nocount On
IF UPDATE(PoliInstalments)
UPDATE tblPoliPolicy
SET PoliSettlementDueDate = Min_PremInstalmentDate
FROM
( SELECT PremPoliID , MIN(PremInstalmentDate) as Min_PremInstalmentDate
FROM tblPremPolicyPremium T1
inner join Inserted I2
on T1.PremPoliID = I2.PoliID
and T1.PremDeleted = 'N'
AND T1.PremIncludeInTotal = 'Y'
GROUP BY PremPoliID...
January 18, 2005 at 12:18 am
How about :
SELECT A1.ProductID
FROM tblProductAttributeValues A1
inner join tblProductAttributeValues A2
on A1.ProductID = A2.ProductID
and A2.Active = 1
AND A2.AttributeID = 15
AND A2.AttributeValue =1
inner join tblProductAttributeValues A3
on A1.ProductID = A2.ProductID
and A3.Active...
January 17, 2005 at 8:09 am
No, but you can use dts to export/import the data.
January 17, 2005 at 7:57 am
Basicaly simple recovery works like this :
Your log is still in use for data-transaction-integrity. Once data gets committed, the space used in the log for that transaction is marked for...
January 17, 2005 at 7:47 am
Check
- http://www.sqlservercentral.com/columnists/chedgate/clusterthatindex.asp
- http://www.sqlservercentral.com/columnists/sjones/sqlserver2000indexing.asp
- http://www.sqlservercentral.com/columnists/dharris/indexesanoverviewandmaintenanceforperformance.asp
January 17, 2005 at 7:25 am
To perform PIT(point in time)-recovery we perform log-backups before every other type of backup.
If you are not interested in PIT-recovery, you can fall back to other ways :
- make frequent full...
January 17, 2005 at 7:20 am
You could start with a simple view test.
Start sql Query analyser and build a query the has all the security-features in it wich you desire.
E.g.
Create Myview
as
Select mycol1 from sales...
January 17, 2005 at 1:46 am
Hi Brian,
You'll off course have to select the server-instance which you want to alter the tcpip properties.
I have a server with 3 virtual instances and all 3 are listed in...
January 17, 2005 at 12:47 am
If you can build the query/procedure which contains the mechanism to determine "their clients" only, you can implement that.
January 17, 2005 at 12:24 am
Maybe this is what you are looking for :
SQL Server Network utilities (Server-box)
TCPIP-properties
Hide server
January 17, 2005 at 12:11 am
That is what it is supposed to do. !!
clusterd as discribed in BOL :
CLUSTERED
Creates an object where the physical order of rows is the same as the indexed order...
January 17, 2005 at 12:03 am
it can take a while, but you'll get used to it.
January 16, 2005 at 11:58 pm
In sqlserver there is no such thing as date or time, you only have datetime and smalldatetime which is date with time.
If you want...
January 14, 2005 at 12:46 am
Viewing 15 posts - 6,751 through 6,765 (of 7,472 total)