Viewing 15 posts - 2,971 through 2,985 (of 3,677 total)
I'm not sure that switching to 'Simple' mode would have the desired effect.
All activity is logged, all simple mode does is truncate the log by removing checkpointed transactions. I would...
December 15, 2004 at 2:01 am
Think of it as a parent/child relationship if that isn't too Freudian.
An employer is a parent the child is the employee.
The customer is the child of contact 4.
Your tbl_relationship table...
December 15, 2004 at 1:43 am
A Haynes manual is a maintenance guide for a car based on a complete strip down of a vehicle.
In theory you could buy a Haynes manual and completely rebuild your...
December 14, 2004 at 8:11 am
I would put the SELECT and FROM part of the query in a view so that your SQL string is as small as possible.
sp_ExecuteSQL does at least grant the possibility...
December 14, 2004 at 8:06 am
You could convert the date to a number first
SELECT * from dbo.MyTable ORDER BY SIGN(@sortOrder)*CAST(MyDate AS REAL)
I'm not sure about strings. I have a feeling that your options are to...
December 14, 2004 at 7:17 am
Cool, hip, stylish and VERY dangerous.
I have a friend who restored one of the original FIAT 500s and those have the fuel tank under the dash! Free cremation with every...
December 14, 2004 at 5:44 am
Sorry Frank, is it also the former Trabant or are they still made?
December 14, 2004 at 5:04 am
I am not a fan of MS Press books.
It may be an obsolete prejudice but I see the existence of 3rd party books as proof that the manufacturers own manuals...
December 14, 2004 at 4:24 am
Not sure what will happen to your existing stored procedures if you follow the renaming route. I suspect that every stored procedure using your table will recompile so there could...
December 14, 2004 at 2:10 am
How big are these image files?
If someone is uploading a huge image file then that will impact on other users.
Do you have some form of created or updated date on...
December 14, 2004 at 1:39 am
TRUNCATE TABLE dbo.YourTable
However, the user needs to be in the DDL_Admin role or higher and you can't GRANT permissions for TRUNCATE.
The small chunks example works well and is good for...
December 14, 2004 at 1:33 am
If you have a parameter whose sign determines the sort order then you can eliminate the case statement altogether.
select top 10 * from Employee order SIGN(@SortOrder)*job_id
December 14, 2004 at 1:29 am
Kalen Delaney's Inside SQL Server 2000 is a good one.
December 14, 2004 at 1:24 am
I don't think there is any particular problem with what you have written unless the tables are huge.
I may have this wrong but I'm pretty sure that SQL joins the...
December 13, 2004 at 6:21 am
I also dropped all indices before importing data.
The difference in performance is very noticeable. If time allowed I also used to stop MSSQLSERVER and SQLSERVERAGENT and run a disk...
December 9, 2004 at 12:49 pm
Viewing 15 posts - 2,971 through 2,985 (of 3,677 total)