Viewing 14 posts - 1 through 14 (of 14 total)
From experience i have learnt that many applications that are billed as limited use and short lifespan, become semi permanent and even permanent solutions. The quick and dirty approach could...
April 21, 2009 at 12:39 am
The ChangeRequestContact table is the best way to handle this type of data. As an added daat integrity measure i would place a constraint on the table only allowing one...
April 21, 2009 at 12:30 am
I use Visio for Enterprise Architects for this. It has a fairly good reverse engineering function allowing you to connect to the database and extract all the SQL object metadata....
April 21, 2009 at 12:22 am
What I find works quite well is the convert function. eg
select convert(varchar(11), getdate(), 106)
will return the date in the format dd MMM yyyy for the format specified (106 in...
April 21, 2009 at 12:03 am
Thanks to all for asistance. The answer was in the article mentioned by sa24. The article indicates that the installation could have problems configuring the database if terminal services is running. You...
May 8, 2005 at 11:54 pm
To PaperStreet, thank you for a comprehensive answer. I am still up a creek without a paddle though. I ahve tried so many things now, I can't even remember the...
May 5, 2005 at 8:49 am
I would suggest that you create a new database on the same server. You then need to retrive info on the datbase you setup using sp_helpdb NewDatabase. This together with...
April 14, 2005 at 12:02 am
select
t1.ID,
t1.LastName,
t1.FirstName,
m.VALUE as Email,
p.VALUE as Phone
from
Table1 t1
left outer join
Table2 m on t1.ID = m.ID and m.COMMUNICATION = 'Email'
left outer join
Table2 p on...
August 11, 2004 at 10:00 am
/*
May need to make some registry changes after installing Oracle client - check the following keys
[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Transaction Server\Microsoft\MSDTC\MTxOCI]\Local Computer\My Computer]
"OracleXaLib"="oraclient8.dll"
"OracleSqlLib"="orasql8.dll"
"OracleOciLib"="oci.dll"
-- Adding linked server (from SQL Server Books Online):
sp_addlinkedserver...
May 27, 2004 at 5:09 am
At what level are you looking to store off time - days, fractions of days or hours. It sounds like you need to track days employees were off work which...
February 17, 2004 at 2:54 am
I seems to me that you need to do deferred processing. This can be done by letting the trigger insert an entry in a 'driver' table that another procedure can...
February 11, 2004 at 1:19 am
If you know Oracle syntax, this should suffice
Left outer join
Oracle = select * from table1, table2 where table1.field1 = table2.field1 (+)
SQL = select * from table1 left outer join table2...
February 10, 2004 at 3:05 am
The simplest solution to getting a simple list of fields is to run the following sql in query analyzer with the output set to comma delimited text.
select * from tablename...
January 29, 2004 at 8:12 am
I found the best approach is to detach the original database files and copy them to the new location and then reattaching both sets of files again.
January 22, 2004 at 8:53 am
Viewing 14 posts - 1 through 14 (of 14 total)