Viewing 15 posts - 301 through 315 (of 496 total)
I am still perplexed by this one. For clarity, here's a rundown of the situation.
This select against the staging table returns one row.
select * from WorkDB.dbo.ContractItems_Staging cc ...
September 15, 2010 at 1:02 pm
By "client" I did mean client app, so I was saying the same thing about SSMS. Why do you need 16 million plus rows to appear on your client?...
August 26, 2010 at 1:18 pm
Sounds like a client issue -- like your client doesn't have enough memory to handle the result set that is returned from the server.
August 26, 2010 at 12:34 pm
Something like this executed against that DB:
select * from sys.database_permissions d inner join sys.database_principals p
on grantee_principal_id = principal_id
inner join sys.objects o on major_id = object_id
order by p.name, o.name
August 26, 2010 at 8:55 am
Ah, yes, the old Jet issue. Not only did I have to use SSIS, I had to run it at the command prompt using the 32 bit version of...
August 25, 2010 at 1:22 pm
david_wendelken (8/25/2010)
jeff.mason (8/25/2010)
Steve Jones - Editor (8/25/2010)
I definitely like the idea of a cloud like Polyserve. That seemed like a great technology.
Only major issue we've seen is SharePoint -- Polyserve...
August 25, 2010 at 10:54 am
Steve Jones - Editor (8/25/2010)
I definitely like the idea of a cloud like Polyserve. That seemed like a great technology.
Is is SO much easier to support than MS clustering. ...
August 25, 2010 at 8:33 am
And yes, you can Active/Active as you describe with multiple nodes on one cluster unit. Just be sure to scope out the hardware/configure SQL settings so you can function...
August 25, 2010 at 8:16 am
Perry Whittle (8/24/2010)
Depends on features you are going to need. Chances are if you have managed with 2005 Std so far...
August 25, 2010 at 8:13 am
If you are willing to spend some serious money, you can buy a log reader that can do what you are asking for -- but you need a knowledgable DBA...
August 25, 2010 at 8:08 am
Our company's concept of "cloud" is that you have a large set of servers clustered by Polyserve that have many instances of SQL, and when an app needs a database,...
August 25, 2010 at 7:56 am
Do you have a link to the article so we can put the statement into context?
August 23, 2010 at 12:38 pm
Depends upon the size of the DB and how critical the recovery of data loss is. For small to medium systems, my rule of thumb is nightly full and...
August 23, 2010 at 12:25 pm
Hate to sound snarky, but yeah, the better way of dealing with it is to license per processor if you are using a web app. Best practices specifically recommend...
August 23, 2010 at 11:04 am
KILL should only be done manually by a trained DBA on a production environment. Period. A user app should NOT be able to kill processes. Too unpredictable...
August 23, 2010 at 10:17 am
Viewing 15 posts - 301 through 315 (of 496 total)