Viewing 15 posts - 406 through 420 (of 1,292 total)
Only thing I could recollect is to run the following command.
Select [NAME] ,DATABASE_ID from Master.sys.databases where [Name] like '%$%TempDB'
If the command returns any rows, then it would be an...
December 29, 2009 at 6:28 am
thermo_ll (12/28/2009)
linked server ? do you have any samplethanks
Have you searched Google for "Linked Server in SQL Server" ? I guess you will get plenty of links to read...
December 29, 2009 at 6:18 am
You are welcome !
December 29, 2009 at 6:13 am
Don't jump into conclusion that the problem is caused by McAfee Anti Virus, it may be one of the reasons.
Check with your systems engineer if they have exceptions enabled on...
December 28, 2009 at 9:08 pm
Ray is right. You would be getting 44.9 rather than 44.8
Start with this.
select ROUND(44.8730084,1) -- gives 44.9000000 as output
Or try this way.
declare @val float;
set @val = 44.8730084
select ROUND(@val,1,1) --...
December 28, 2009 at 11:46 am
GilaMonster (12/28/2009)
Bru Medishetty (12/28/2009)
Thinking about games remind me of this fantastic one from Microsoft, it's called Project Natal.
Not a game though. A new controller (motion sensor, face recognition, etc) for...
December 28, 2009 at 11:23 am
Thinking about games remind me of this fantastic one from Microsoft, it's called Project Natal.
Look at the link below. If you haven't heard about it.
December 28, 2009 at 11:03 am
GilaMonster (12/28/2009)
Bru Medishetty (12/28/2009)
I wonder how you guys get time to play these console games. 😛
What is this 'console' you speak of? Just about all of my games are for...
December 28, 2009 at 9:12 am
I wonder how you guys get time to play these console games. 😛
I bought a PS3 and a dozen games during Thanksgiving weekend, haven't played a single game yet :w00t:
December 28, 2009 at 9:02 am
The Dixie Flatline (12/28/2009)
Looks like everyone took a day off from online communications yesterday. Title for a new horror movie:"The Silence of The Thread"
LOL 🙂 🙂
December 28, 2009 at 7:47 am
I guess you should be good with a single publication with all the tables.
December 28, 2009 at 7:45 am
Agree with Steve, you can't use Mirroring as a solution for this scenario.
To filter the data for each branch, you got to have individual publication for each branch filtering only...
December 28, 2009 at 6:49 am
Have you enabled lock page in Memory.
http://technet.microsoft.com/en-us/library/ms190730(SQL.90).aspx
December 28, 2009 at 6:30 am
I assume you are using 32 bit SQL Server. Have you seen the memory settings on the SQL Instance. Enable AWE and restart the instance.
December 28, 2009 at 6:14 am
Viewing 15 posts - 406 through 420 (of 1,292 total)