Viewing 15 posts - 43,771 through 43,785 (of 49,571 total)
hemakrmmc (10/13/2008)
Please help me out from this bug.
It's not a bug. It's a warning that your table's too wide. The max size of a row in SQL server is 8060...
October 15, 2008 at 8:37 am
An inline function only allows a single select statement as the function body. When run, the optimiser will treat it like a subquery.
multi-statement functions allow a number of statements...
October 15, 2008 at 8:34 am
Are you seeing queries running longer than they should? Are you seeing blocking? If the queries have high wait times, what are they waiting on?
October 15, 2008 at 8:29 am
My preference is to set the max memory and let SQL manage the rest.
October 15, 2008 at 8:28 am
michael vessey (10/15/2008)
October 15, 2008 at 8:20 am
That's kinda what I thought it would return.
You have two options at this point
1) Restore a backup of the database or replace it with the copy.
2) Script out the schema,...
October 15, 2008 at 8:15 am
billross (10/15/2008)
UPDATE myTable
SET
[my field] = table2.[my field]
and it can't even do this:
UPDATE myTable
SET
[my field] = (select [my...
October 15, 2008 at 8:13 am
So, the index should be (Y,M). Right?
Or (M, Y). It won't make a difference with this query, since it's an equality.
October 15, 2008 at 8:04 am
That's why we ask for the table schema.
Assuming that the relationship between product_id and product_name is a 1-to-1, this should work
SELECT table.uniquekey, table.product_id, table.product_name, sub.last_purchase_date
FROM table INNER JOIN
(Select
...
October 15, 2008 at 8:01 am
I would suggest that you rename the corrupt DB, then restore the clean backup along side it. Run CheckDB to make sure there's no corruption. If it's clean, then see...
October 15, 2008 at 2:42 am
Have you done a stats update on all tables after the move to 2005?
October 15, 2008 at 1:56 am
Don't try directly updating/copying the sysindexes table. It;s a system table and if you mess with it you could end up with a worse problem than you currently have.
Please run...
October 15, 2008 at 1:38 am
May Anne Duran (10/15/2008)
I've been deleting .ldf files whenever it's size is way too big and eterprises manager simply creates a new one. and the issue is not the log...
October 15, 2008 at 1:35 am
I've heard of that. I want to get it, just to see how they've done it. I know a lot of the MVPs are getting it for that reason.
October 15, 2008 at 1:30 am
Viewing 15 posts - 43,771 through 43,785 (of 49,571 total)