Viewing 15 posts - 4,861 through 4,875 (of 5,103 total)
quote:
declare @Column4 varchar(50), @Column5 varchar(50)select @Column4 = Column4,
@Column5 = Column5
from MyTable
where id...
December 29, 2003 at 8:10 am
I am not quite sure but I will try not to use this technique unless impossible to build a SET BASED solution
December 29, 2003 at 8:02 am
I would Follow "Racosta" Suggestion!
Create Separated Text files and all you will have to run is:
Copy /b *.txt AllCombined.asc
December 29, 2003 at 7:39 am
How about:
CREATE TABLE CARS( Manufact int, Model int, Nbr int, Descr varchar(100), Other Varchar(100))
GO
INSERT INTO CARS(Manufact, Model, Nbr, Descr, Other) VALUES(1,1,1,'DESCr1','Other1')
INSERT INTO CARS(Manufact, Model,...
December 29, 2003 at 7:22 am
And to make it point to the right .MDW use the Following RegKey to set the Path
HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Jet\4.0\Engines\SystemDB
December 24, 2003 at 1:37 pm
weissa,
The solution for this is a stored Procedure, As jxflagg Suggested
if you plan to retrieve more than 1 Parent Record at time
You will have to use...
December 24, 2003 at 11:07 am
weissa,
Can you answer jxflagg Last question?
I have no clue about what are your presentation requeriments and That makes it harder for me so I am guessing now:
Suppose you...
December 24, 2003 at 9:46 am
Tools --> Options ---> General Tab--> Query File Directory, Result File Directory, Template File Drirectory
Change and Apply
December 24, 2003 at 9:08 am
I agree with you 100% I just said that at THAT moment it was a little too fast to get to any conlusions. If the App can be architected that...
December 24, 2003 at 9:02 am
quote:
Even if this is best done as two queries, it would probably be better to write it into a stored procedure ...
December 24, 2003 at 8:49 am
quote:
quote:
There is no info as of now!! on how are things implemented (...
December 24, 2003 at 8:38 am
quote:
The left join query is as follows -- syntax is actually for ODBC MS Access, but logic holds for SQL Server.For...
December 24, 2003 at 8:21 am
quote:
Even if this is best done as two queries, it would probably be better to write it into a stored procedure rather...
December 24, 2003 at 8:12 am
can you post something about the structure of your tables?
the short answer is I think you are doing the right thing (Formatting is a Front-End task). But I have almost...
December 24, 2003 at 8:00 am
Viewing 15 posts - 4,861 through 4,875 (of 5,103 total)