Viewing 9 posts - 46 through 54 (of 54 total)
I would use the isnull function which checks to see if the value is null and lets you specify the replacement value.
strSql11=" insert into TempItem (intId,intWebId, intDataType, intNavid ) values...
May 18, 2007 at 7:28 am
Just a thought, have you tried using INSERT INTO ... SELECT DISTINCT ... to get the non-duplicate rows inserted into your new table? Then join back to the original to...
May 1, 2007 at 7:44 am
Another option, that does not use a stored procedure, but does use a view, is to use the Import External Data function in Excel. You could set up a Query...
May 1, 2007 at 7:37 am
I am not trying to manage the SQL server from Access 2003. I just notice that if I have the adp (ade) application open and I try to do anything...
April 30, 2007 at 3:28 pm
I am using a table. The table is being used by an internal application that is running on 50 to 60 machines. The datatype is datetime.
There is another interesting thing,...
April 30, 2007 at 11:09 am
I agree there is no need to convert it back, but that is the SQL that SQL server creates when I enter the date in the criteria pane. While I...
April 27, 2007 at 9:03 am
I am using the criteria pane to fill in the criteria.
So I put the date in the filter field as: > 4/1/07.
It creates this SQL:
SELECT *
FROM tblProduction
WHERE (ProdDate > CONVERT(DATETIME,...
April 27, 2007 at 8:42 am
I found that while the delete older than function in the wizard did not work, I could create a maintenance plan and then just add a maintenance cleanup task to...
April 18, 2007 at 7:45 am
Viewing 9 posts - 46 through 54 (of 54 total)