Viewing 15 posts - 11,716 through 11,730 (of 14,953 total)
Grant Fritchey (1/6/2009)
GilaMonster (1/6/2009)
Grant Fritchey (1/6/2009)
I must be old, D&D used lots (and lots and lots) of six-sided dice. Now, Traveller, there were the decimal dice at work.
Which edition was...
January 8, 2009 at 1:46 pm
There is a default trace running in SQL 2005. Doubt you can get what you want out of there, but it's your only hope. Well, that or invent...
January 8, 2009 at 12:06 pm
Glad we could help. You're welcome.
January 7, 2009 at 10:49 am
You can have SSIS run .NET code, which can be used to automate Excel. Have SSIS create the Excel file, then a script opens the file through automation, auto-fits...
January 7, 2009 at 10:46 am
I've had plenty of instances where removing the time was important for a warehouse or reporting solution, but otherwise, I leave it in. I'd rather have it and not...
January 7, 2009 at 10:35 am
Try this, see if it does what you need:
SELECT a.application_id,
d.brandname,
dd.dosage,
...
January 7, 2009 at 9:36 am
The first thing I'd do is break the proc into smaller procs and have it all called from a master proc. Then you can tune each one.
As written, the...
January 7, 2009 at 9:26 am
I'm going to pretty much echo Gail on this one. If the column will be used in a Where or Join clause, put it in the key, but if...
January 7, 2009 at 9:17 am
I have a question about methodology. Why not, instead of OLE automation, use SSIS? It's designed to do this kind of thing. It has no problem whatsoever...
January 7, 2009 at 9:07 am
UDFs have to be followed by parentheses, even if they don't have input parameters.
Is your command:
set @_AsOfDate = dbo.svf_GetPriorMonthEndDate_asofdate
or is it:
set @_AsOfDate = dbo.svf_GetPriorMonthEndDate_asofdate()
If it doesn't have the parentheses, it...
January 7, 2009 at 9:04 am
A recursive CTE could find that for you. Use that with an If Exists check and roll back the transaction on violation.
January 7, 2009 at 9:01 am
I haven't worked for my current employer long enough to know whether it's great or merely good, but it sure looks promising.
The main thing I look for is morale. ...
January 7, 2009 at 8:57 am
Jeff Moden (1/6/2009)
January 7, 2009 at 7:17 am
For that purpose, I wouldn't use dashboard reports at all. I'd run a trace, and analyze the CPU use, IO stats, etc., while filtering for that particular database. ...
January 7, 2009 at 7:09 am
foxjazz (1/6/2009)
don't you guys have jobs?
Yes, I've been hired by a shadowy international group of conspirators. My job is to annoy people who suggest using cursors in SQL Server....
January 7, 2009 at 7:03 am
Viewing 15 posts - 11,716 through 11,730 (of 14,953 total)