Viewing 15 posts - 1,666 through 1,680 (of 5,356 total)
If that's not a linked server issue, you might indeed be better off posting this here:
--
Frank Kalis
Microsoft SQL Server MVP
Webmaster: http://www.insidesql.org/blogs
My blog: http://www.insidesql.org/blogs/frankkalis/[/url]
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...
--
Frank Kalis
Microsoft SQL Server MVP
Webmaster: http://www.insidesql.org/blogs
My blog: http://www.insidesql.org/blogs/frankkalis/[/url]
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....
--
Frank Kalis
Microsoft SQL Server MVP
Webmaster: http://www.insidesql.org/blogs
My blog: http://www.insidesql.org/blogs/frankkalis/[/url]
create view dbo.foobar
as
select top 100 percent * from authors order by au_lname
go
select * from dbo.foobar
drop view dbo.foobar
--
Frank Kalis
Microsoft SQL Server MVP
Webmaster: http://www.insidesql.org/blogs
My blog: http://www.insidesql.org/blogs/frankkalis/[/url]
You're welcome!
Glad I could help.
![]()
--
Frank Kalis
Microsoft SQL Server MVP
Webmaster: http://www.insidesql.org/blogs
My blog: http://www.insidesql.org/blogs/frankkalis/[/url]
Hm, sorry, I have no experience with MSDE. Would this be an alternative?
http://www.sqldev.net/xp/xpsmtp.htm
--
Frank Kalis
Microsoft SQL Server MVP
Webmaster: http://www.insidesql.org/blogs
My blog: http://www.insidesql.org/blogs/frankkalis/[/url]
Both procedures are located in the master database. Did you already search there?
--
Frank Kalis
Microsoft SQL Server MVP
Webmaster: http://www.insidesql.org/blogs
My blog: http://www.insidesql.org/blogs/frankkalis/[/url]
By any chance, did you change the underlying table structure? If so, you might want to read about sp_refreshview in BOL.
--
Frank Kalis
Microsoft SQL Server MVP
Webmaster: http://www.insidesql.org/blogs
My blog: http://www.insidesql.org/blogs/frankkalis/[/url]
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...
--
Frank Kalis
Microsoft SQL Server MVP
Webmaster: http://www.insidesql.org/blogs
My blog: http://www.insidesql.org/blogs/frankkalis/[/url]
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...
--
Frank Kalis
Microsoft SQL Server MVP
Webmaster: http://www.insidesql.org/blogs
My blog: http://www.insidesql.org/blogs/frankkalis/[/url]
Sorry, I don't use DTS, but http://www.sqldts.com is a frequently referenced source for such questions. Maybe you find something there.
--
Frank Kalis
Microsoft SQL Server MVP
Webmaster: http://www.insidesql.org/blogs
My blog: http://www.insidesql.org/blogs/frankkalis/[/url]
Hm, if you use Windows Authentication only, why not delegate this task to the OS password policy?
--
Frank Kalis
Microsoft SQL Server MVP
Webmaster: http://www.insidesql.org/blogs
My blog: http://www.insidesql.org/blogs/frankkalis/[/url]
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...
--
Frank Kalis
Microsoft SQL Server MVP
Webmaster: http://www.insidesql.org/blogs
My blog: http://www.insidesql.org/blogs/frankkalis/[/url]
Viewing 15 posts - 1,666 through 1,680 (of 5,356 total)