Viewing 15 posts - 76 through 90 (of 346 total)
Roy Ernest (10/19/2010)
October 19, 2010 at 12:28 pm
You need to provide a column name/alias for the ORDER BY clause to work - the CASE statement won't work there. From BOL
[ ORDER BY
{
...
October 19, 2010 at 12:17 pm
There's a connect item on this. The workaround to this issue is to change the upload schedule - maybe that helps?
October 19, 2010 at 10:53 am
Maybe you need to set the default schema of the user - the user seems to be mapped to the "dbo" schema after your upgrade?
From this link:
A query such as...
October 19, 2010 at 8:01 am
Might be related to this? -> http://blogs.msdn.com/b/psssql/archive/2008/07/10/sql-server-reports-operating-system-error-1450-or-1452-or-665-retries.aspx
From the article:
The error cause is related to a depleted system resource (non-paged pool, paged pool ,...). These issues have to be tracked down...
October 19, 2010 at 7:11 am
You can check this article for information on schemas. There's good information about synonyms in BOL - is there anything specific about synonyms outside of this information that you're looking...
October 19, 2010 at 3:35 am
Don't know if this is a SQL 2000 to SQL 2005 replication issue - but what we do is something similar to what you've already done. However we either use...
October 18, 2010 at 7:45 am
This document talks about replication and database mirroring (including information on trace flag 1448 which allows the log reader to replicate changes regardless of the mirroring state):
October 14, 2010 at 11:20 am
What i Undersrood: Every time The Subscriber Database tables truncate and Bulk insert from Base DB.. is this correct? If Correct mean..
Is that reduce the Performace of Base DB...
I'm assuming...
October 14, 2010 at 3:36 am
It is encrypted.
TDE performs a real time encryption and decryption of data at the page level. Data is encrypted before it is written into the page and decrypted and...
October 13, 2010 at 4:51 pm
Some information available here
There's a section on partitioning in this document - not too much information though and the recommendations there will need a whole bunch of testing and trade...
October 13, 2010 at 4:22 pm
You've probably already followed the method of transferring data to a new table but here is another approach that uses the MOVE clause to alter the table to use a...
October 12, 2010 at 6:10 am
I think the "green arrow" shows up only if the account you're connecting with has rights to start/stop the service. If you right click on the server name in object...
October 11, 2010 at 12:09 pm
Well - it could very well be that I'm wrong then...:hehe:
October 11, 2010 at 11:55 am
Yes, you can rename the instances after installation:
sp_dropserver old_name
go
sp_addserver new_name
go
This works only for the default instance - not for a named instance. Best way to go about renaming named instances...
October 11, 2010 at 8:44 am
Viewing 15 posts - 76 through 90 (of 346 total)