Viewing 15 posts - 6,781 through 6,795 (of 13,460 total)
views(as well as procs and functions) can become invalid if the underlying tables/views they use have changed, got dropped, etc.
in SQL 2000 (the forum you posted in) you cannot use...
Lowell
September 14, 2011 at 2:15 pm
you can call CoreFTP via a command line, and it supports SFTP.
once a profile is setup for the destination SFTP with the username and password in it, you can call...
Lowell
September 14, 2011 at 11:45 am
all right, this was interesting for me, as I know i could do it in TSQL.
here's a working solution for header and data...i ignored the footer information for now.
copy and...
Lowell
September 14, 2011 at 11:13 am
well, you are using a two part test for the "Cash Payment"...chknumber has to be blank and ALSO you are checking the amount...
i'd think that the amount may be...
Lowell
September 13, 2011 at 8:47 pm
yep null would probably be the culprit; just wraping it with ISNULL should fix it i think:
select
CASE
WHEN ISNULL(chcknumber,'') = '' AND checkAmount <> ''...
Lowell
September 13, 2011 at 2:34 pm
just syntax; the case returns the desired value only, so you can't have a assigning, like that chknbr='Cash':
select
CASE
WHEN chcknumber='' AND checkAmount <> ''
...
Lowell
September 13, 2011 at 1:48 pm
here's my take on it;
this query featuring a CTE lists all foreign keys, and if there is an index with the leading column on the child table or not.
if it...
Lowell
September 13, 2011 at 12:52 pm
In the past, i've changed it where i've circled it below under IPAll. that has been how i assigned a static port for my express isntance to listen to.

Lowell
September 13, 2011 at 10:21 am
you must have a process that is harvesting the data off of the web site, right?
if the format of the data changed, that would throw off the import of the...
Lowell
September 13, 2011 at 7:09 am
i'd code it with an EXISTS like this:
IF EXISTS(SELECT 1
FROM PARM
...
Lowell
September 13, 2011 at 6:14 am
dave could that be mySQL that you pasted?
the syntax doesn't match SQL server;
the equivilent would be like this:
IF Object_id('StormHeader') IS NULL
CREATE TABLE StormHeader ( ...rest of definition
Lowell
September 9, 2011 at 8:20 am
you can create an INSTEAD OF trigger on a view, and have that trigger do the DML to the desired underlying tables.
your code will then try to insert/update/delete fromt he...
Lowell
September 8, 2011 at 2:27 pm
lol i got two honorable mentions in there!
I gotta know, what is in that Lowell_used_columns file? i'm sure i have the same script saved, but I dunno what yours references!
Thanks...
Lowell
September 8, 2011 at 11:04 am
ahh the by months things going to be tough...you can't just use the 87 days between them? you have to have it broken down my whatever number of months between?
do...
Lowell
September 8, 2011 at 10:52 am
Ninja's_RGR'us (9/8/2011)
How big is the log file in the restored DB? That file needs to be 0 initialized and that takes time.http://sqlskills.com/blogs/Kimberly/post/Instant-Initialization-What-Why-and-How.aspx
ahh, yeah zeroing out the log file ,...
Lowell
September 8, 2011 at 10:14 am
Viewing 15 posts - 6,781 through 6,795 (of 13,460 total)