Viewing 15 posts - 136 through 150 (of 172 total)
does anyone know of a good Access to VB or .Net conversion tool?
January 4, 2006 at 9:17 am
if you know the SPID of the process currently executing, you could look at the program_name column from master.dbo.Sysprocesses in your stored procedures.
SELECT
spid
,status
,sid
,hostname
,program_name
,cmd
,cpu
,physical_io
,blocked
,dbid
,convert(sysname, rtrim(loginame)) as loginname
,spid as 'spid_sort'
, substring(...
December 29, 2005 at 4:55 pm
imbed a web browser control into your application for the display, then you fill in your parameters on the web address as GET name=value pairs. see
ms-help://MS.RSBOL80.1033/RSPROG/htm/rsp_prog_urlaccess_374y.htm
in reporting services BOL for...
December 27, 2005 at 10:09 am
A better way is to use NT Groups in your active directory. Set up to use Integrated Security on the database. Create a group, add your application users, then add the...
December 27, 2005 at 9:41 am
are your ANSI NULLs set the same on both machines?
December 27, 2005 at 9:37 am
Very Cool! How do you control the size of the files created by the backup process? Is there a way to specify the backup file size or do I do that by...
December 27, 2005 at 9:34 am
Thanks for the best description of what the HAVING clause is for that i have ever seen!
December 21, 2005 at 12:48 pm
In general, whenever i have to do some kind of transformation on the data being imported, i will import it as is to a temporary table and then run a procedure...
December 20, 2005 at 5:19 pm
Not sure if this will help you out, its VB6 not SQL but its what i use to read a Text column into a variable. you can compute the amount...
December 8, 2005 at 9:52 am
Functions specifically return a scalar or table. the nice thing is a table value function can be used in your from clause, you just need to alias the result
select a.a,...
November 29, 2005 at 1:28 pm
Bring on the pain o wise one! i have a similar issue, a COTS package that must remain pure, and i need to see who's making certain changes
November 29, 2005 at 1:22 pm
try setting the column type in excel. Right click the column header, choose format cells, then choose text from the list on the Number tab. this works best before the...
November 29, 2005 at 11:03 am
do you have an antivirus or firewall application on the machine that blocks port 25? we did and had to set up a list of exceptions on the machines sending...
November 29, 2005 at 10:58 am
set up a DNS alias. Reference the alias in all your connection strings. then if your primary goes down you update the DNS once and it will propogate to the...
November 29, 2005 at 9:52 am
Viewing 15 posts - 136 through 150 (of 172 total)