Viewing 15 posts - 976 through 990 (of 1,193 total)
Sounds like the machine SQL is installed on is having problems authenticating against the domain, don't think it's an issue with SQL itself.
Whether that's the machine itself being dodgy, or...
May 18, 2012 at 4:47 am
No problem mate 🙂
May 18, 2012 at 4:33 am
I don't think you need the machine name in there either.
May 18, 2012 at 4:26 am
Good error box!
Does this help? (From http://msdn.microsoft.com/en-us/library/ms162819.aspx)
"Important
When starting an instance of SQL Server, you must use the sqlservr application in the appropriate directory for that instance. For the default instance,...
May 18, 2012 at 4:23 am
Did you get anywhere with this Paul?
Couldn't find a way to do it, perhaps create a dummy file, or grab another FT index file from somewhere & rename it?
May 18, 2012 at 4:07 am
dwain.c (5/18/2012)
May 18, 2012 at 3:41 am
Nice one. Got it by a process of elimination rather than actual knowing the incorrect one!
May 17, 2012 at 2:37 am
No problem, let us know how you get on!
You could use Access, I think it'd make more sense to grab SQL Server Express (it's free!) and play with that, much...
May 14, 2012 at 8:33 am
ljvarga (5/11/2012)
Right now I'm only doing Select queries to the database (is it possible to screw up the live data with a...
May 11, 2012 at 10:59 am
No way for the user to go through the original table population procedure again?
Changing to Bulk Logged recovery mode might help with the disk space required, although not sure if...
May 11, 2012 at 9:22 am
ljvarga (5/11/2012)
May 11, 2012 at 9:13 am
Haven't really looked at the code properly, but I did notice this:
Aside from its clever use of use of SQL Server features, it relies on a very important insight into...
May 11, 2012 at 5:44 am
You need to give your derived table an alias (I've used "tbl" here, but anything will do):
select *
from personel
where maas = (select max(avg_sal)
from (
SELECT AVG (maas) as avg_sal
from personel...
May 11, 2012 at 5:23 am
Viewing 15 posts - 976 through 990 (of 1,193 total)