Viewing 15 posts - 16 through 30 (of 106 total)
I thought we'd had that "issue" rectified. If this is not the case I can remove this. In my defense I did try and contact you, which I duly mentioned...
July 27, 2005 at 3:27 am
Quote taken from a study:
India, whose IT exports are more than triple the size of its domestic IT market, still has a piracy rate of 74 percent...
July 27, 2005 at 2:59 am
Interesting.
Companies that send all their work to be done off-shore ignore cultural differences between say India and developed countries where the evidence suggests it is acceptable to...
July 27, 2005 at 12:57 am
Get some database change management software. That way you can work with your source control in the way it was intended. Application code is usually held in source control why...
July 22, 2005 at 2:12 am
I do a full build from source at regular intervals using DB Ghost database builder (http://www.dbghost.com). This ensures no one has unwittingly broken the database due to changes.
July 21, 2005 at 1:40 am
select * from INFORMATION_SCHEMA.TABLES where TABLE_TYPE='VIEW' and objectproperty(object_id('[' + TABLE_SCHEMA + '].[' + TABLE_NAME + ']'),'IsSchemaBound')=1
regards,
Mark Baekdal
+44...
July 8, 2005 at 1:23 am
I'd do it the other way around IE:
your way...
select *
into beta.work.dbo.Table_backup
from _all_props
my preference...
select *
into dbo.Table_backup
from SourceServer.SourceDatabase.DatabaseOwner._all_props
regards,
Mark Baekdal
June 30, 2005 at 12:05 am
you may need to use a text datatype for the column to accomodate for large inputs.
regards,
Mark Baekdal
+44...
June 29, 2005 at 11:50 pm
we also do an application - DB Ghost - that creates schema and data change scripts with a twist - it works with your source control and the scripts always...
June 21, 2005 at 12:38 am
sp_rename is a procedure that I think should only be used for tables and the child objects of tables where the object doesn't have any entries in the syscomments table which...
June 17, 2005 at 2:18 am
take a look at this article:
http://www.innovartis.co.uk/pdf/Innovartis_An_Automated_Approach_To_Do_Change_Mgt.pdf
It's the foundation for the software components called DB Ghost (http://www.dbghost.com) a total database change management solution which promotes the idea...
June 16, 2005 at 2:29 am
question? Why don't you have a test platform where changes are made and tested then the changes are uploaded to your production system through reliable change management? It means this...
June 16, 2005 at 2:17 am
and what order would you call that?
If you can't mathematically explain an order you can't do it via a set method. The rules you perscribe aren't logical, they're probably a...
June 14, 2005 at 5:02 am
you may want to try the DB Ghost data and schema scripter, it's free and it has a COM interface so you can easily create a script to automate the...
June 2, 2005 at 2:15 am
DB Ghost has this functionality.
1. Script out the database to a temporary directory using DB Ghost data and schema scripter.
2. Using option 1 of DB Ghost, build a database using...
June 2, 2005 at 2:04 am
Viewing 15 posts - 16 through 30 (of 106 total)