Viewing 15 posts - 6,061 through 6,075 (of 7,191 total)
This is a little bit confusing. Please will you provide table DLL in the form of CREATE TABLE statements, some sample data in the form of INSERT statements and,...
March 20, 2008 at 8:44 am
Yes, I think you can use an XML file, although I've never done it that way myself. I think you'll need to study this area quite carefully since it...
March 20, 2008 at 4:59 am
Are you sure about that? Can you not create a different configuration filter for each package, and store them in a SQL Server table? Then, when your file...
March 20, 2008 at 4:41 am
Das
The SSIS equivalent of dynamic properties in DTS is Package Configurations. You'll probably need to do a bit of reading about it, since I don't think it works in...
March 20, 2008 at 4:20 am
I don't know because I haven't tested, but I would guess that ALTER and DROP/CREATE would both cause the procedure to be recompiled at next execution. This is a...
March 20, 2008 at 3:12 am
Marios
Probably best to use the system stored procedure sp_helprotect.
John
March 19, 2008 at 11:13 am
Marios
I don't have time to do it now, but it should be fairly easy to get what you want by joining sys.database_permissions to sys.database_principals.
John
March 19, 2008 at 10:55 am
OK, you say this isn't working. Does that mean that it gives an error message, or it runs but doesn't do what you expect, or something else? Please...
March 19, 2008 at 10:20 am
Dave
Is the time zone important in your calculations? If not, you could just knock it off the end. This worked for me:
select cast ('03/18/2008 13:12:29' as datetime)
John
March 19, 2008 at 9:35 am
Dave
If you use CONVERT instead of CAST, then you can take advantage of the date style options. These are explained in Books Online.
John
March 19, 2008 at 9:26 am
This is as easy as I'm going to make it for you. If you're not willing to help yourself then you won't find many people here willing to help...
March 19, 2008 at 8:22 am
You can find this out easily for yourself by reading about database maintenance plans. If you don't want to use one of those, look up the syntax of BACKUP...
March 19, 2008 at 7:53 am
Yes, that looks right. If you run SELECT DATEADD(m,-12,getdate()) then you see it returns the date from a year ago. Just one thing to beware of: if your...
March 17, 2008 at 8:31 am
We're not going to do all the work for you. Have a go at writing the query yourself, and if there's anything in particular you don't understand, please post...
March 17, 2008 at 8:24 am
Viewing 15 posts - 6,061 through 6,075 (of 7,191 total)