Viewing 15 posts - 1,756 through 1,770 (of 5,394 total)
Well, not really. It's just something we're not used to see in Windows, but it's a totally normal thing in *nix.
In Win2008 and Win7 folders appear with the link overlay...
March 8, 2012 at 4:32 am
Yes, and it worked.
I also tried many other horrible things with junctions, but that would be a whole different story. 😀
March 8, 2012 at 4:10 am
You could also read this article by Erland Sommarskog: http://www.sommarskog.se/dyn-search-2005.html
March 8, 2012 at 3:24 am
Looks like you want a catch-all query.
See this great blog post by Gail Shaw: http://sqlinthewild.co.za/index.php/2009/03/19/catch-all-queries/
March 8, 2012 at 3:22 am
Make sure the SQL Server Browser service is running and that the UDP port 1434 is open on the firewall (both sides: server and client).
Aliases aside, without querying the SQL...
March 8, 2012 at 3:19 am
george sibbald (3/7/2012)
You can a make a case for tempdb...
March 8, 2012 at 1:09 am
Other than known limitations (no peer-to-peer replication), no AFAIK.
Connect could be a good place to start looking.
March 8, 2012 at 12:57 am
You could move those files to a non-system drive and create a junction on the system drive.
That way, the files would appear on both drives, but will physically reside outside...
March 8, 2012 at 12:51 am
It doesn't make any difference. The value will be available right after the INSERT takes place and you will discard it anyway if you can't reach the commit for any...
March 8, 2012 at 12:46 am
I suspect the problem lies on the CHECK constraint.
If it only has to separate numbers from characters, you could have a much simpler constraint:
DECLARE @A TABLE (
code varchar(10)
)
INSERT INTO @A...
March 8, 2012 at 12:42 am
Actually, I was not trying to suggest a solution, I was only pointing out that float is not a precise type and cannot be used in indexed computed columns.
Thanks for...
March 8, 2012 at 12:33 am
Watch the virtual event keynote without logging in: http://t.co/DW4m8Ob2.
Looks like it works on Chrome only.
Ironic, isn't it?
March 7, 2012 at 9:58 am
I would record database names in a table and then backup only the databases that are not in that table.
Another possible solution: since you don't want database backups for existing...
March 7, 2012 at 9:35 am
Great! Glad I could help.
March 7, 2012 at 8:43 am
Viewing 15 posts - 1,756 through 1,770 (of 5,394 total)