Viewing 15 posts - 17,416 through 17,430 (of 26,489 total)
If your database is using either BULK_LOGGED or FULL recovery models, you need to set up transaction log backups to manage the growth of the transaction log. If you...
January 15, 2010 at 9:56 am
In your case, you need to remove the commas from the string. I'd also recommend using the date/time style, especially if you know the the dates are all formated...
January 15, 2010 at 9:32 am
tosscrosby-60625 (1/15/2010)
January 15, 2010 at 9:12 am
What would help is if you would post the table definition(s) (CREATE TABLE statement(s)), some sample data (series of INSERT INTO statements for the table(s)), and the expected results of...
January 15, 2010 at 8:17 am
Why and how do you feel that an experienced DBA tried to embarrass you during an interview?
Specific examples would be benifical.
January 15, 2010 at 8:07 am
Have to agree, who better to evaluate the skills/knowledge of DBA but an experienced DBA? Would you rather a developer (read that as programmer) do the evaluation, or maybe...
January 15, 2010 at 7:50 am
It also depends on wether or not you plan on using the view in other procedures. If so, creating the view would make reuse of the select statment easier.
January 15, 2010 at 7:45 am
You say your database isn't using transactions. Are you running INSERT, UPDATE, and DELETE statements in the database? If so, you are using transactions. You may not...
January 15, 2010 at 7:26 am
The WHERE clause would filter the result set returned from the JOIN of the two tables. Any filtering done on the transaction table would in effect turn the left...
January 14, 2010 at 3:27 pm
bwillsie-842793 (1/14/2010)
Lynn Pettis (1/14/2010)
January 14, 2010 at 2:26 pm
Nice catch, Gail. My mind is still on my linked server problem and didn't see that.
select
mbd.Trade_ID,
ISNULL(SUM(t.amount), 0) AS Purch
from
...
January 14, 2010 at 2:15 pm
Give this a try:
select
t.Buyer,
ISNULL(SUM(t.amount), 0) AS Purch
from
dbo.Member_Base_Data mbd
left outer join dbo.Transactions t
...
January 14, 2010 at 2:00 pm
bwillsie-842793 (1/14/2010)
Conan The Coder (1/14/2010)
Speaking of checklists, the weirdest thing I ever got asked as by Gateway support...they asked me to burp my laptop like a baby....
Oh yeah, you...
January 14, 2010 at 1:53 pm
Viewing 15 posts - 17,416 through 17,430 (of 26,489 total)