Viewing 15 posts - 316 through 330 (of 18,926 total)
Please post sample data and required output.
December 19, 2011 at 9:32 am
'' or empty date = 1900-01-01
dateadd 16 = 1900-01-17
I'd try convert(date, nullif(str_datecol, ''))
December 19, 2011 at 9:08 am
Here's my emergency ready made script to shrink a db.
Change the correct log size for your needs.
Comment out the backup script start if you don't want it, but I would...
December 19, 2011 at 6:54 am
Google & LEARN events.
You need to become self-teaching. You can't depend on someone else to do that for you.
December 19, 2011 at 6:51 am
Then check the combo's event. I think it's in the afterupdate that you need to do this but I'm not 100% certain
In vba the code will look like
me.text1 =...
December 19, 2011 at 5:10 am
Add the 2 columns in the select that fills the combo, change the # of columns property in the combo. Set the witdh for those colums to 0;
So it...
December 19, 2011 at 4:37 am
Happy to help.
I'm sure I've seen those maps documented in the past. I just can't find them anymore. Granted it's almost 3 fulls versions back now....
December 18, 2011 at 8:26 am
Can't find it either on google.
This is the only thing I found that may help you out.
http://www.sqlservercentral.com/Forums/FindPost387744.aspx
I don't have access to my 2k5 machine so I can't open the trace.
December 18, 2011 at 8:01 am
Go in master and open up that proc.
Copy the code out to QA and run one statement at a time untill you find the query that does the...
December 18, 2011 at 7:51 am
Close EM, start profile, open the GUI to see ignore_dup_key on.
Save the trace and send it over here (edit attachements).
December 18, 2011 at 7:26 am
start profiler and open the property window. It must be hidden in a status column or something like that.
December 18, 2011 at 7:15 am
Yes but ignore dup key is not one of the options for that function.
I've spent a few minutes looking all over the place and I can't find that info anywhere....
December 18, 2011 at 6:54 am
SELECT VISIT_DATE
, SUM(CASE WHEN CLINIC <> 'Inpatient' THEN 1 ELSE 0 END) AS OutPatients
, SUM(CASE WHEN CLINIC = 'Inpatient' THEN 1 ELSE 0 END) AS Inpatient
, SUM(CASE WHEN CLINIC...
December 18, 2011 at 4:59 am
I don't understand the way you get the outpatients value. This is the closest I can get you without more info.
SELECT VISIT_DATE
, COUNT(*) AS OutPatients
, SUM(CASE WHEN CLINIC...
December 18, 2011 at 4:46 am
Revenant (12/16/2011)
GilaMonster (12/16/2011)
Revenant (12/16/2011)
Next RC is in February, and I bet it will be fixed.
It's not a Denali bug. It's been reproduced in everything from SQL 2000 right up to...
December 17, 2011 at 6:00 am
Viewing 15 posts - 316 through 330 (of 18,926 total)