Viewing 15 posts - 91 through 105 (of 663 total)
Following confirms your understanding.
October 4, 2003 at 4:23 am
Similar question at http://dbforums.com/arch/179/2003/6/825836
October 4, 2003 at 4:15 am
Want to play around with the following sp, maybe it can be of use to you.
October 2, 2003 at 5:52 pm
Agree with Jonathans solution, maybe first sum per day for available data and then join to year dates. But then again it depends on the distribution of the data.
September 30, 2003 at 4:50 am
Also do not know Crystal that well, but you can try and pass the vendors as a comma delimited string to the sp.
September 30, 2003 at 4:43 am
Replace GetDate() with your date parameter your are interested in.
Set NoCount On
Create Table Test(ScheduledDate DateTime,SomeOtherCOl varchar(100))
Go
Insert Test
Select GetDate(),'Date Inside'
Insert Test
Select dateadd(day,3,GetDate()),'Date Inside'
Insert Test
Select dateadd(day,2,GetDate()),'Date Inside'
Insert Test
Select...
September 28, 2003 at 10:50 pm
Open a command prompt(DOS promnpt) and change your directory to C:\Program Files\Microsoft SQL Server\MSSQL\Binn
Type
TEXTCOPY.exe /?
The program should display the help menu.
September 28, 2003 at 9:53 pm
Open Windows Explorer and search for TEXTCOPY.exe
If you do not find it on your own pc search the SQL server machine for it.
September 28, 2003 at 7:11 pm
C:\JNK.ico is the filename of an icon which I have loaded into the database with the program TEXTCOPY.exe
C:\JNKII.ICO is the filename where the the image was stored, when retieved from...
September 28, 2003 at 5:52 pm
Cannot comment on the 'efficiently', suppose DTS will be faster.
Alternative is to select the data directly from Access databases.
Select * from OPENDATASOURCE('Microsoft.Jet.OLEDB.4.0',
'Data Source="\\Servername\Shared\Example1.mdb";
User ID=Admin;Password=;')...Tablename
Can also...
September 28, 2003 at 3:01 pm
quote:
Junction TableBOL 2000
You create such a relationship by defining a third table, called a junction table, whose primary key consists of the...
September 28, 2003 at 4:28 am
September 28, 2003 at 4:03 am
Viewing 15 posts - 91 through 105 (of 663 total)