Viewing 15 posts - 8,761 through 8,775 (of 26,490 total)
Well, if it is poor, missing, or incomplete there really isn't much reason to read it, is there. :w00t:
February 19, 2013 at 12:56 pm
If you don't know the trigger is there, it is probably due to poor, missing, or incomplete application/database documentation.
February 19, 2013 at 12:41 pm
Sounds like an auditing firm making a determination not specified in the standard because they think it best. If it isn't in the actual standard how can the justify...
February 19, 2013 at 12:26 pm
Hard to say since we can't see what you see. There really isn't enough information to make any kind of informed response.
February 19, 2013 at 12:20 pm
Bit more to think about:
-- datetime data type
declare @DateVal datetime;
set dateformat mdy;
set @DateVal = '2013-02-14';
select @DateVal;
go
declare @DateVal datetime;
set dateformat dmy;
set @DateVal = '2013-02-14';
select @DateVal;
go
declare @DateVal datetime;
set dateformat mdy;
set @DateVal =...
February 18, 2013 at 5:30 pm
Explicitly declare each column in the select lists and for those columns that are defined as chaacter values include COLLATION and which collation you want to use for the comparision....
February 18, 2013 at 11:43 am
Eric M Russell (2/18/2013)
Lynn Pettis (2/18/2013)
Eric M Russell (2/18/2013)
However, SET DATEFORMAT setting influences how date/time values...
February 18, 2013 at 9:46 am
Check out this site for a set of excellent procedures: http://ola.hallengren.com/.
You can use the Windows Task Scheduler to run these using SQLCMD.
February 18, 2013 at 9:24 am
gh449 (2/18/2013)
I tried that getting dozens on duplicates on the output file? Thank you!!!!
Confused. Did it help or not?
If not, what is the problem. I am not a...
February 18, 2013 at 9:19 am
Eric M Russell (2/18/2013)
However, SET DATEFORMAT setting influences how date/time values are displayed in a resultset...
February 18, 2013 at 9:12 am
gh449 (2/18/2013)
I need to write a few lines of SQL that will suppress one file from another. I work in foxpro 2.6 for DOS (i know its old but it...
February 18, 2013 at 8:19 am
No additional licensing is needed to use mirroring unless you are using the mirror databases for offloading reporting using database snapshots. In that case the server hosting the mirror...
February 16, 2013 at 9:37 pm
It could also be the job(s) are being run manually. What does the job log tell you?
February 16, 2013 at 9:51 am
Viewing 15 posts - 8,761 through 8,775 (of 26,490 total)