Viewing 15 posts - 91 through 105 (of 135 total)
Thank you, this is exactly what I was look for.
Howard
February 6, 2006 at 7:38 am
Govinn:
Thanks for the reply.
I am using a Rapid Application Tool (Magic from Magic Software Enteprises) to connect to the database. ALL logins consists of Database...
November 28, 2005 at 8:12 am
I am using a Rapid Application Tool (Magic from Magic Software Enteprises) to connect to the database. My login consists of Database Server name, User Name, User Password, (User name...
November 18, 2005 at 12:00 pm
All users are logged into SQl with sql-authentication and for the majority of users the nt user name does appear.
Howard
November 18, 2005 at 10:59 am
The authentication is the same on all PC's.
November 17, 2005 at 1:23 pm
Am I the only one who cannot get Wayne's snippet to work. I created a little test table, inserted four entries. On with a leading char(13) and one ending with...
November 9, 2005 at 1:39 pm
Leah:
1. check your rights.
Rights are okay.
2.make sure...
October 8, 2005 at 11:17 am
Leah
I ran your query against the pubs database. The only change was the last argument...
October 8, 2005 at 9:38 am
Leah Kats:
Would you please provide an example of how to properly run your script.
Perhaps use the following in the example:
@FileName = Test_File.xls,
@sql = select col1, col2, col3 from...
October 7, 2005 at 2:15 pm
Thanks for the suggestion and example of a different schema design.
This is very helpful information.
Howard
June 6, 2005 at 9:20 am
This is along the lines of what I would like to do. Since the backup file already exists on the remote server I would like to run the command line winzip,...
June 4, 2005 at 3:42 pm
Slight modification to your last query:
select substring(account_number,2,4) as accnt_no,
min(description_1)
from chart_of_accounts
where left(right(account_number,5),2) = '20'
group by substring(account_number,2,4)
order by substring(account_number,2,4)
Works just fine.
Can you tell me why removing the 'min' around description_1 will...
June 4, 2005 at 3:23 pm
Thank you, that is exactly what I was looking for.
Question, why does the min(description_1) work and just description_1 not work?
June 4, 2005 at 3:15 pm
Viewing 15 posts - 91 through 105 (of 135 total)