Viewing 15 posts - 181 through 195 (of 663 total)
Have a look at another thread at
September 7, 2003 at 7:16 pm
Change the column EventClass to INT.
Maybe the info is already available in a table/view/schema
Create Table EventClassTable(Event_Number varchar(10),Event_Name VarChar(100),Description Varchar(300))
GO
Set NoCount...
September 7, 2003 at 2:20 pm
What is the size of the database and is a log file size of 30Gb normal?
September 7, 2003 at 5:12 am
See there is even a 120GB external drive
September 7, 2003 at 5:04 am
TO latch onto what spongemagnet is saying, remember a problem with an Invoice Age Analysis sp with which I ran into trouble with on 6.5. After some MS help decided...
September 7, 2003 at 4:42 am
I'll also go the DTS route, can also compress CSV files. A slow possibility is to use a public domain stored procedure tot select the data and create SQL insert...
September 7, 2003 at 3:35 am
Hope it helps a bit.
Set NoCount on
Go
Create Table Hits(LeDate int,aHits Int)
Go
Insert Hits values (1,100)
Insert Hits values(2,125)
Insert Hits values(3,145)
Insert Hits values(3,155)
Insert Hits values(4,165)
Insert Hits values(5,100)
Insert Hits values(6,125)
Insert...
September 7, 2003 at 3:25 am
Not much but have a look at http://dbforums.com/arch/72/2002/12/635572
September 4, 2003 at 11:47 pm
Can do a 'not exists' but prefer Antares686 solution.
September 4, 2003 at 11:31 pm
Forgotten, will it always be a one to one relationship?
September 4, 2003 at 11:24 pm
Will it be always a single branch relationship (one to one)?
September 4, 2003 at 11:23 pm
How many records get loaded and how frequently is the table accessed.
Can do update stats, etc. after load.
September 4, 2003 at 4:58 am
Try something like
Case When R1=1 Then (SELECT Top 1 English FROM TableR1) Else '' End
September 4, 2003 at 4:48 am
If I understand the problem correctly, how many levels can this go one?
After ?? time periods F -> E -> D -> C -> B-> A etc.
September 4, 2003 at 4:42 am
quote:
our knowledge is good but we could do with having access to real expertise
What about...
September 3, 2003 at 2:36 am
Viewing 15 posts - 181 through 195 (of 663 total)