Viewing 15 posts - 301 through 315 (of 1,158 total)
ek-822869 (9/7/2012)
September 7, 2012 at 12:44 pm
Do you mean Altering the table structure?
September 7, 2012 at 12:24 pm
There's nothing "built in" for this but there's no reason why you couldn't put an update trigger on msdb.dbo.sysjobs and msdb.dbo.sysschedules to send an email if the enabled flag is...
September 5, 2012 at 2:54 pm
erics44 (9/5/2012)
can a broken trigger say in the replicated database affect the live database at all?
Not straight away and probably not for some time. Provided the logreader is running...
September 5, 2012 at 8:26 am
crashdan (9/5/2012)
SqlServer will prevent you from updating replicated data.
Sorry. That is incorrect. It will not.
September 5, 2012 at 8:13 am
Not in the way you describe.
You can publish tables using a foreign key constraint type link using Merge replication but not to a single table. i.e. you can publish...
September 5, 2012 at 8:12 am
Replication uses magazine/newspaper terminology.
Publisher = Source Server
Subscriber = Destination Server
Article = Table/Stored procedure/view
Publication = Group of articles
You would want to limit access to the subscriber as there is very little...
September 5, 2012 at 7:32 am
erics44 (9/5/2012)
is this the best way to get real time data into...
September 5, 2012 at 7:12 am
emile.milne (9/5/2012)
β’The following scenarios are not supported in SQL Server 2012:
You cannot migrate from a stand-alone instance of SQL Server to a SQL Server 2012...
September 5, 2012 at 7:10 am
sql-lover (8/18/2012)
Idea #1
Splitting the table in two. Keeping table #1 on the actual production database server but with data for current year. Then, based on the PK or date time...
August 19, 2012 at 2:26 am
greeshma.patla (8/17/2012)
they are missing in the script..
My point is, encrypted stored procedures (or other objects) will not be scripted.
August 17, 2012 at 4:27 am
guerillaunit (8/16/2012)
What does the following variable assignment mean in T-SQL?
SET @myvariable += 'test'
Append to the existing value. Same as
SET @myvariable = @myvariable + 'test'
August 16, 2012 at 10:10 am
Antony Symonds (8/15/2012)
When I try...
August 15, 2012 at 9:51 am
Yes. As you would run the script via a query session the inserts would be picked up and cause a conflict. It shouldnt be an issue to resolve...
August 15, 2012 at 7:16 am
Viewing 15 posts - 301 through 315 (of 1,158 total)