Viewing 15 posts - 3,106 through 3,120 (of 5,394 total)
jcrawf02 (6/9/2011)
Kiara (6/9/2011)
Grant Fritchey (6/9/2011)
Kiara (6/9/2011)
Tom.Thomson (6/9/2011)
Kit G (6/8/2011)
June 9, 2011 at 6:53 am
Lowell (6/9/2011)
June 9, 2011 at 6:52 am
richardd (6/9/2011)
It makes me wonder why 64-bit SQL can't use 32-bit providers (eg Jet), since the bit-ness of out-of-process COM components doesn't matter. They'd only need a 32-bit...
June 9, 2011 at 6:19 am
If you just want them smaller, you can use this script.
Just make sure that foreign keys are resolved.
DECLARE @tableName sysname
DECLARE @schemaName sysname
DECLARE @sql nvarchar(max)
DECLARE tabs CURSOR STATIC LOCAL FORWARD_ONLY
FOR
SELECT name,...
June 9, 2011 at 4:27 am
ALZDBA (6/9/2011)
GilaMonster (6/9/2011)
Is this person irritating anyone else, or am I just in low-tolerance mode at the moment?
Are you in desperate need for coffee 😉
You provided the perfect answer for...
June 9, 2011 at 4:18 am
zaleeu (6/9/2011)
MS SQL R2 Express 2008
Big live database has 10000 records. I want to use only a small portion of that for testing...
June 9, 2011 at 4:11 am
This should be enough:
INSERT INTO DatabaseB..DestinationTable
SELECT *
FROM DatabaseA..SourceTable
WHERE LastName = 'Smith'
June 9, 2011 at 4:03 am
You have many options.
Is it a one-shot export or you have to it regularly?
Both databases on the same instance or different instances?
Are the tables identical or you...
June 9, 2011 at 3:51 am
Rhox (6/9/2011)
- Create group and place all connections (per instances) in it
- Right click on the group and select 'New query'
- Execute your...
June 9, 2011 at 3:47 am
You can't do it with a SQL query, because each instance lives on its own and is not aware of othere instances on the same machine.
You could query the registry...
June 9, 2011 at 3:35 am
GilaMonster (6/9/2011)
Is this person irritating anyone else, or am I just in low-tolerance mode at the moment?
Not yet, really.
Is there a particular thread where he crossed the line or...
June 9, 2011 at 3:26 am
ALZDBA (6/9/2011)
It was my pleasure to get a first glimps of your article.This is a lesser known topic, but definately has its place in SQL instance management topics.
Great job !
Johan,...
June 9, 2011 at 2:55 am
Our alphabet soup friend gives weird recommendations on LinkedIN
I'm starting to think he downloaded his certs from the pirate bay. 😀
June 9, 2011 at 2:32 am
rfr.ferrari (6/8/2011)
Sachin Nandanwar (6/6/2011)
I am reading one book on SQL Server internals.When explaining the checkpoint process it states that
"....If the LSN of the dirty page is greater than the...
June 8, 2011 at 10:06 am
Viewing 15 posts - 3,106 through 3,120 (of 5,394 total)