Viewing 15 posts - 1,666 through 1,680 (of 5,356 total)
According to "Maximum Capacity Specifications" in BOL you can have 16 instances per computer. However, in the real world you would rather buy more servers.
November 30, 2004 at 8:48 am
When you use a DATETIME datatype in SQL Server, it will ALWAYS store a DATE and a TIME portion. Consider this:
SELECT
CAST('10:00:00' AS DATETIME)
, CAST('20041030' AS DATETIME)
November 30, 2004 at 8:37 am
If that's not a linked server issue, you might indeed be better off posting this here:
November 30, 2004 at 7:25 am
There shouldn't be a big difference between both methods. I only mentioned it because in most case you see someone coming up with cast and convert stuff between varchar and...
November 30, 2004 at 6:28 am
Definitely a 'No'.
Technically you can create triggers on certain tables in MSDB, but that's all. Do a search here. This has been discussed several times before.
Maybe you should tighten your permissions....
November 30, 2004 at 5:58 am
create view dbo.foobar
as
select top 100 percent * from authors order by au_lname
go
select * from dbo.foobar
drop view dbo.foobar
November 30, 2004 at 5:23 am
Hm, sorry, I have no experience with MSDE. Would this be an alternative?
November 30, 2004 at 2:34 am
Both procedures are located in the master database. Did you already search there?
November 30, 2004 at 2:21 am
By any chance, did you change the underlying table structure? If so, you might want to read about sp_refreshview in BOL.
November 30, 2004 at 1:12 am
This one uses fast and efficient Integer operations, so it should give good performance:
SELECT
DATEADD(MONTH,DATEDIFF(MONTH,30,GETDATE()),30)
A very cool script for lazycoders comes from SQL Server MVP Steve Kass. Try...
November 30, 2004 at 1:02 am
May I ask, why you keep the file in an image column AND on the filesystem? Or do you need this to determine if the file was updated? Anyway, here's...
November 30, 2004 at 12:53 am
Sorry, I don't use DTS, but http://www.sqldts.com is a frequently referenced source for such questions. Maybe you find something there.
November 30, 2004 at 12:50 am
Hm, if you use Windows Authentication only, why not delegate this task to the OS password policy?
November 29, 2004 at 6:52 am
But only if I use 'WITH TIES'?!
No, sorry if I confused you. Forget the WITH TIES in your case. It is redundant.
As for making it dynamic:
See http://www.sommarskog.se/dynamic_sql.html and http://www.sommarskog.se/dyn-search.html for...
November 29, 2004 at 3:30 am
Viewing 15 posts - 1,666 through 1,680 (of 5,356 total)