Viewing 15 posts - 616 through 630 (of 920 total)
I can, for some unknown reason, only ever remember 2 exact phrases from the books I've read. One is from Erich Fromm:
The quest for certainty blocks the quest for...
February 13, 2008 at 5:26 pm
And on a related note, I used to work with someone named Vince Caputo. Ever been to Tacoma?
January 24, 2008 at 6:57 pm
How about:
Select distinct g.loginid, g.fname, g.lname
From gradstudents g
where g.loginid NOT IN (select t.loginid from ta t)
Based on the data you provided, I think you're excluding all the class numbers,...
January 24, 2008 at 6:56 pm
I'd second Adam's comment. If you have to load all the data to do the compares, you might as well just load the data as you do now.
I once...
January 2, 2008 at 4:45 pm
Man, I have got to learn to type faster....
December 13, 2007 at 5:27 pm
Your variable starts as NULL and I think that 'anything' concatenated with NULL yields NULL, so giving the variable an initial value should fix that. I think there's also...
December 13, 2007 at 5:26 pm
When you restore the master database, you're essentially re-setting the server's brain to the state it was in at the time of the backup. So your server is, of...
December 11, 2007 at 4:50 pm
It's a simple answer. There are no good programmers, just like there are no good boys who want to date my daughter:w00t: They're all just closet hackers who...
November 27, 2007 at 4:54 pm
The most common cause for this type of failure is that the SQL Server service account, which runs the xp when it runs from a proc, doesn't have the proper...
November 5, 2007 at 12:15 pm
If I'm remembering correctly, the tool we use grabs the proc and brings it up into a window in clear text. From there you can save it to another...
November 1, 2007 at 5:45 pm
There are third party tools you can get that will decrypt stored procs (at least up through SQL Server 2000). If you Google or Yahoo 'decrypt stored procedure' you'll...
November 1, 2007 at 5:06 pm
I'm not an Access expert, but I concur with the previous poster that all you can do is restore from the last known good backup. It's been my experience...
November 1, 2007 at 9:41 am
Let me make sure I understand the problem. You are adding a row with a non-null siteid and you get the 'siteid cannot be NULL' message.
Can you create an...
October 31, 2007 at 5:24 pm
Could you give me an example of what you're calling a "flat file dbms system"? If something is truely a flat file, you have to read through it sequentially...
October 31, 2007 at 1:55 pm
You cound try something like:
create table #junk (
float_to_add float NOT NULL)
go
insert #junk(float_to_add) values (1.1104)
insert #junk(float_to_add) values (1.222)
insert #junk(float_to_add) values (1.32)
insert #junk(float_to_add) values (1.41)
insert #junk(float_to_add) values (1.52)
insert #junk(float_to_add) values (1.66)
insert #junk(float_to_add)...
October 4, 2007 at 11:48 am
Viewing 15 posts - 616 through 630 (of 920 total)