Viewing 15 posts - 316 through 330 (of 663 total)
"I've got a Transaction Log that just won't give in"
Question: Give in to size, multiple ldf files
July 23, 2003 at 3:16 pm
To latch on jpipes, maybe moving the where into the on clause. Do pickup some problems with it sometimes.
July 22, 2003 at 3:44 pm
Check if query get any candidates for the update
Select Count(*) from tblshipping_sched
where NOT (shipped_qty is null)
July 22, 2003 at 3:18 pm
Maybe more of the business rules aswell, how do you determine if Joe Doe is really Joe Doe in the other database, both maybe married to a Sue.
July 22, 2003 at 3:14 pm
Have a look at
FIX: Invoking SQL-DMO Methods By Using "By Reference" Parameters May Cause a Memory Leak
at
http://support.microsoft.com/default.aspx?scid=kb;EN-US;q293636
July 21, 2003 at 7:36 pm
See SQL Server Books Online for
SET DATEFORMAT dmy
EXEC sp_configure 'two digit year cutoff'
July 21, 2003 at 5:24 pm
The example can trace 'American family back to the Revolutionary War'. Quote from the article.
Done the lineage stuff in 6.5 but the lineage storage (varchar(255)) was a problem because...
July 21, 2003 at 3:59 pm
Thanks for the example!
July 21, 2003 at 3:43 pm
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 =...
July 21, 2003 at 3:33 pm
Luckily, you are not using version 6!
July 20, 2003 at 11:44 pm
Needs a bit more work
SELECT 1 as Tag,
NULL as Parent,
TopLevel.TopLevelID as [TopLevel!1!TopLevelID],
...
July 20, 2003 at 3:34 am
Agree with NPeeters
, sounds like an identity column will do the job.
July 17, 2003 at 11:29 pm
Maybe completely irrelevant, but do you release all your object explicitly
July 17, 2003 at 8:17 pm
Viewing 15 posts - 316 through 330 (of 663 total)