Viewing 15 posts - 31 through 45 (of 99 total)
Mirroring will copy the permissions, etc. You will have to set up the mirroring for each db as it won't automatically mirror a new database when you create it. The...
January 19, 2007 at 6:07 am
Could you give them no permissions to the tables themselves so that they do everything through the views?
For views that need to support insert/update/delete you can create instead of triggers...
January 19, 2007 at 5:49 am
You want to use a "Derived column" transformation.
January 15, 2007 at 6:08 am
So this is one of those cases where you have to play with the system tables.
But what does job_id relate to? Is it the package ID in SSIS?
January 12, 2007 at 3:30 am
That's what I was looking into, as it seems I can't script the maintenance plans. Thus it seems like I don't want to use them anymore, but instead script the...
January 10, 2007 at 3:19 am
I was trying to avoid having to perform things like restores on failover so that the other server is ready to stand in almost right away.
January 9, 2007 at 2:51 am
That's what I thought, seems simpler than trying to get the maintenance plan copied, found a way to get the script the maintenance plan generates the other day, so that...
January 8, 2007 at 2:35 pm
Can you please avoid crossposting otherwise it confuses things.
http://www.sqlservercentral.com/forums/shwmessage.aspx?forumid=5&messageid=334992
January 8, 2007 at 6:45 am
"osql -?" for list of options, check books online for more information on each one ( http://msdn2.microsoft.com/en-us/library/ms162806.aspx .
I belive the option you're after though is:
-i...
January 8, 2007 at 6:42 am
I find those filter systems more anoying usually, since they often stop people name 'Dick' from posting, or such sentences as 'careful you don't prick yourself'. At the end of...
January 8, 2007 at 6:29 am
It seems that checking if a parameter is null is not supported by SQL Mobile.
Also SQL Mobile doesn't support timestamps.
Thus the only two simple solutions I can think of were:
Having a...
January 4, 2007 at 8:45 am
If you're not returning thousands of rows it may be better just to have the client calculate this.
Something as simple as using System.Collections.Specialized.BitVector32, this will effectivly give you 32 boolean...
December 18, 2006 at 9:32 am
It can, you just have to set up the table styles, and set each column style's visible property to false for the ones you don't want to show up. That...
December 18, 2006 at 8:28 am
Ah, so if the entire column (not row) doesn't have any values for that field then you wan't to hide the column, that sounds more like something that should be...
December 18, 2006 at 8:14 am
How about:
Where SessionTypeID = 1
And tl.Date = '01/16/2006'
AND (
col1 IS NOT null
OR col2 IS NOT null
....
OR col20 IS NOT null
)
December 18, 2006 at 7:39 am
Viewing 15 posts - 31 through 45 (of 99 total)