Viewing 15 posts - 37,906 through 37,920 (of 49,571 total)
waleed_m_M (7/4/2009)
select * from (SELECT column_name,column_default
FROM INFORMATION_SCHEMA.COLUMNS
...
July 4, 2009 at 1:58 am
If you're seeing a max size for the log of 2 TB, that's the maximum possible size for a log file within SQL. So restricted to 2TB is the same...
July 4, 2009 at 1:54 am
That is going to update every single row in the sqldate_tbl table. Is that your intention?
The only reason that could be not updating any rows is if there are no...
July 3, 2009 at 2:04 pm
RBarryYoung (7/3/2009)
July 3, 2009 at 1:31 pm
river (7/3/2009)
Can you please validate master?
Looks fine.
I don't know why you're calling me 'master' though. Honestly, I'd prefer if you didn't use that, my name is at the bottom ad...
July 3, 2009 at 1:13 pm
Don't worry. I've spelt Florian's name wrong in a published article and Grant's surname wrong in a post on the MVP newsgroups :blush:
July 3, 2009 at 9:10 am
You still need to do an update stats. Rebuilding the indexes will update stats on those indexes. It won't update column statistics that aren't associated with an index though. Like...
July 3, 2009 at 9:02 am
You laugh. I was speaking with someone recently and he said that he and his team do some SQL development, but nothing complex, no joins or anything.
July 3, 2009 at 8:56 am
I was hoping that Paul would comment on this, but he's on vacation for a month.
If the dropping of the stats doesn't work (and apparently it doesn't, seeing as you...
July 3, 2009 at 8:35 am
Just got some clarification on this.
SQL Enterprise can be installed on Vista. It is not, however, a supported configuration. This means that should you call customer support with a problem...
July 3, 2009 at 8:31 am
vitesh.bhana (7/3/2009)
If only they had added some sharks...
July 3, 2009 at 8:21 am
river (7/3/2009)
UPDATE STATISTICS table_name WITH FULLSCANAll the statistics of this table will be updated with the option FullScan.
Correct
But , for instance i...
July 3, 2009 at 8:18 am
latingntlman (7/3/2009)
Bruce, your suggestions "convert(varchar" won't work because it's a text field, so the field needs to be parsed to remove the spaces and time after the date. Then...
July 3, 2009 at 6:57 am
This should give you the idea
DECLARE @DateInString varchar(20)
SET @DateInString = '7/2/2009 4:18:25 PM'
SELECT CAST(@DateInString AS DATETIME)
SELECT DATEADD(dd,datediff(dd,0,@DateInString),0)
July 3, 2009 at 6:56 am
river (7/3/2009)
Shoud i update statistics for all the tables in my databases and all indexes?
As I said, if you check books online, you'll see that you can either update...
July 3, 2009 at 6:51 am
Viewing 15 posts - 37,906 through 37,920 (of 49,571 total)