Viewing 15 posts - 3,736 through 3,750 (of 7,168 total)
The messages logged by SQL Agent are limited, and formatting is removed making it difficult to read. Might I suggest piping the output of your job step to a file...
June 26, 2012 at 8:08 am
schleep (6/26/2012)
This will exclude all non-user objects. I assume they're probably not required anyway.Get-ChildItem | where {$_.IsSystemObject -eq $false}
That brings up a good point. I have replication enabled in my...
June 26, 2012 at 7:55 am
Kwisatz78 (6/26/2012)
I am needing to export some data from a backup into our live DB due to some issues. Currently I am thinking the best thing would be...
June 26, 2012 at 7:39 am
It is recommended that you start using the new DMV sys.master_files. sys.sysaltfiles was left in the product for backward compatibility only. The recommended replacement is sys.master_files.
June 26, 2012 at 7:04 am
Why setup, then tear down transactional replication just to get a snapshot made? Have you looked into Snapshot Replication?
Regarding your request about RMO, you're asking for help on an uncommon...
June 26, 2012 at 6:13 am
Roust_m (6/26/2012)
opc.three (6/25/2012)
Try it with -Name, like this:
Get-ChildItem -Name -Exclude dbo.sp_MS*This one worked, because it has "dbo."
Thanks!
True, but I found it does not work in the rest of the pipeline....
June 26, 2012 at 5:42 am
Roust_m (6/26/2012)
opc.three (6/25/2012)
opc.three (6/25/2012)
Try it with -Name, like this:
Get-ChildItem -Name -Exclude dbo.sp_MS*
😛 and then I remembered the initial intent...
Try this one:
Get-ChildItem | Where-Object {$_.name -NotLike "sp_MS"} | %{$_.Script($so) + "...
June 26, 2012 at 5:38 am
opc.three (6/25/2012)
Try it with -Name, like this:
Get-ChildItem -Name -Exclude dbo.sp_MS*
😛 and then I remembered the initial intent...
Try this one:
Get-ChildItem | Where-Object {$_.name -NotLike "sp_MS"} | %{$_.Script($so) + " GO "...
June 25, 2012 at 9:20 pm
Try it with -Name, like this:
Get-ChildItem -Name -Exclude dbo.sp_MS*
June 25, 2012 at 8:57 pm
i ve tried merge replication..
i want to know how the log file will be
when subscriber is not connected, Publisher should not try to send the data to the subscriber
how to...
June 25, 2012 at 4:33 pm
I thought I was in a SQL 2008 Forum when I posted, so I tested on SQL 2008. I noticed I was in a SQL 2005 Forum after I posted....
June 25, 2012 at 3:46 pm
Mindy Hreczuck (6/25/2012)
June 25, 2012 at 3:41 pm
Yes, you connect to a SQL Server 2008 instance using SQL Server Management Studio 2012.
Have you tried it in your environment and it did not work? Or are you just...
June 25, 2012 at 12:07 pm
dir is an alias for Get-ChildItem
Get-Alias dir
One of the options for Get-ChildItem is -Exclude which accepts a pattern.
help Get-ChildItem -Detailed
If you devise the repl proc pattern and provide that...
June 25, 2012 at 11:26 am
Viewing 15 posts - 3,736 through 3,750 (of 7,168 total)