Viewing 15 posts - 496 through 510 (of 1,158 total)
Koen Verbeeck (3/16/2012)
Back on-topic:http://www.sqlservercentral.com/Forums/Topic1268199-391-1.aspx
Or am I working with SQL too long to realize this is an ordinary beginner's question? Am I asking too much?
Possibly. Its the sort of basic...
March 16, 2012 at 8:06 am
GilaMonster (3/16/2012)
MysteryJimbo (3/16/2012)
Not the best wording.Feel free to improve on it.
Meant the question
March 16, 2012 at 4:46 am
GilaMonster (3/16/2012)
March 16, 2012 at 4:29 am
Do you? I dont know.
Should you? You should always keep a sources controlled copy of your database schema. Ideally down to the object level with developers working...
March 16, 2012 at 4:10 am
Simple enough to get the output
create table #person (OrderId int , PersonId int, Name varchar(20), Product varchar(20), [Date] date)
insert into #person (OrderId, PersonId, Name, Product, [Date])
values (1, 1, 'AA', 'AA',...
March 16, 2012 at 3:55 am
Because there are more C, C++ and Java developers than there ever were VB developers. C# is very easy to pick up when you've used C, C++ and Java.
In...
March 15, 2012 at 7:06 am
I'd be cautious combining this clustering solution with virtualisation. It could work, but you need to present a lot of volumes to the server to make it workable.
March 15, 2012 at 5:42 am
Since you have a SAN in both sites would it be more desireable to have a single 4 node geo cluster with SAN replication?
You can have the advantages of a...
March 12, 2012 at 5:31 am
If you are dynamically generating the sql why the need for a temporary table? or the exec statement?
The only way you can make a temporary table globally visible (not table...
March 12, 2012 at 5:25 am
anthony.green (3/12/2012)
March 12, 2012 at 4:08 am
Assuming you fulfill licence requirements for source and destination, you can use litespeed for logshipping.
If you dont you can still logship but you will need to either perform a full...
March 12, 2012 at 3:24 am
Apart from the syntax, you can achieve the same with both so there's little between them since they both use the same .Net libraries.
vb does have a stigma associated with...
March 9, 2012 at 7:17 am
Here's two I know of. I'm sure theres a couple more that I've forgotten.
March 9, 2012 at 5:32 am
You will hit an OS limit on the number distribution agents you'll be able to run. That depends partly on hardware. So if you're planning on having a...
March 8, 2012 at 9:28 am
I've added new articles in the past which reinitalise subscribers when it isnt required is one example.
Unpredictable and multiple schema locks when dropping subscriptions is another.
Managing something as potentially damaging...
March 8, 2012 at 6:28 am
Viewing 15 posts - 496 through 510 (of 1,158 total)