Viewing 10 posts - 1 through 10 (of 10 total)
Perfect
Thanks
September 4, 2013 at 8:48 am
Because I'm old and it still works, I use vb6 to create excel (from SQL stored procedures) and format within the vb code.
I've been sending various reports to people in...
August 9, 2013 at 4:04 pm
Are the 17k of email addresses in a table?
August 9, 2013 at 3:46 pm
use master
declare @Foo as table(a int)
insert into @Foo
select 960
union
select 510
union
select 945
Here is code that I got from this site a few days ago.
select convert(varchar, floor((convert(numeric(9,0),...
August 16, 2011 at 4:06 pm
Thanks Lynn.
I will give this solution to the SQL developer working on this project and let him see if it will work for him.
Tim Hansen
January 28, 2011 at 8:45 am
I'm old school.
I do this for clients and use vb6 to not only populate excel spreadsheets, but I also can apply any number format requests and then email the file...
January 27, 2011 at 5:36 pm
If it were me, I'd modify your table to add the column that you need.
I would then modify all of your triggers to include the information you want to populate...
July 16, 2010 at 4:46 pm
How about a simple update query add the end of the batch that updates the columns to NULL where value = ''?
May 20, 2010 at 4:13 pm
I've done this before using LIKE and '%'
exec mySP @FirstName, @Lastname, @status
within the stored procedure
set @Firstname = @Firstname + '%'
set @LastName = @LastName + '%'
set @status...
April 29, 2010 at 12:08 pm
How about creating a LINKED table in the Access database with permissions set for the end user? Then the data is up to date always.
April 21, 2010 at 4:47 pm
Viewing 10 posts - 1 through 10 (of 10 total)