Viewing 15 posts - 25,336 through 25,350 (of 26,487 total)
You could still convert to a string, use format code 112 instead of 101. It will give your date in yyyymmdd format, and will sort as you expect.
This will...
January 2, 2008 at 3:42 pm
It would help if you could provide some test data, the DDL for the table(s), and the expected results. Just looking at the code, its hare to tell what...
January 2, 2008 at 2:24 pm
Per processor licensing is also valid if you have a large internal user community that is accessing your database. If you purchased SQL Server 2000 or SQL Server 2005...
January 2, 2008 at 1:33 pm
You are confusing the the names in the call below with the names of your parameters in the stored procedure definition. they are not the same.
exec mailsecurity @dbname,@emp,NULL,Admin output
exec...
December 21, 2007 at 1:52 pm
Procedure mailsecurity is expecting 4 parameters, inthe following order:
@dbname, @name, @emp, @admin-2 (output)
Your call in PRC_GET_EMAIL_ADDRESS is only sending 3 parameters mapped to the expected parameters as follows:
@name to @dbname,...
December 21, 2007 at 1:03 pm
In your second call with only two parameters, the second variable is mapped to the second variable in the stored procedure. If you are going to execute the stored...
December 21, 2007 at 9:35 am
I'm at a loss right now. I was hoping you were running x64 since, as far as I know, MS hasn't released 64 bit drivers for Access as of...
December 18, 2007 at 1:11 pm
What version of SQL 2005 (x32 or x64)?
December 18, 2007 at 1:05 pm
Simple recovery model, the transaction log is truncated when the data is checkpointed. In full recovery model, the transaction log is only truncated when a transaction log backup is...
December 17, 2007 at 4:11 pm
It "Depends". What type of backup and what recovery model is the database using?
A full backup and differential backup do not truncate the transaction log. Enough of the...
December 17, 2007 at 2:52 pm
I'm glad to have been of assistance, even though all I did was point you to Jeff's article. Be sure to post a thank you to Jeff as well...
December 17, 2007 at 8:30 am
Here is what would really help, provide us with the DDL for the tables, some sample data for the tables, and your expected results based on the sample data.
Jeff Moden...
December 14, 2007 at 2:07 pm
I took your code, made a couple of changes for my environment, and was able to send myself an email. If you would like, I can make another small...
December 14, 2007 at 8:15 am
I was comparing your call to sp_send_dbmail to one I have in a scheduled job and I see one thing missing from yours, this:
@execute_query_database = 'mydb',
Add this to your call...
December 13, 2007 at 11:46 am
I don't know, but I got the answer (per QoD) correct because it makes sense to me. There are two types of DML triggers: AFTER and INSTEAD OF. ...
December 13, 2007 at 7:51 am
Viewing 15 posts - 25,336 through 25,350 (of 26,487 total)