Viewing 15 posts - 421 through 435 (of 497 total)
ekant_alone (7/30/2009)
source for the data is user input through two drop down boxes, first having 1to12 int values for month and second has int values for year.
That's not the source...
July 31, 2009 at 2:14 am
I take it that your Month data is numerical and non-repeating, i.e. January of your first year is '1' and January of your second year is '13'?
Where is your source...
July 30, 2009 at 10:24 am
Correct. The drive letters and sizes can be different on each cluster.
Make sure that if you have a firewall between your two clusters you have set the appropriate firewall rules...
July 27, 2009 at 1:44 am
It looks like the 'To' parameter need to be set explicitly, but you should be able to get a 'cc' list from a text file, e.g.
foreach ($recpt in $recpts) {
$to...
July 23, 2009 at 7:53 am
The error is telling you that import-txt is not a Powershell cmdlet....which it isn't. To read contents from a .txt file use this command:
$recpts = get-content "d:\services\EmailList.txt"
Make sure that each...
July 23, 2009 at 5:02 am
We use SQL Sentry by SQL Sentry Inc. I don't know how it compares to the other products you listed, but it is a lot cheaper! 😉
There is also some...
July 23, 2009 at 4:32 am
There's an article in today's SQLServerCentral.com about horizontal partitioning:
July 23, 2009 at 4:26 am
As far as I am aware, SSRS is not cluster aware so you would need to install it (and IIS - unless you are using SSRS 2008 which has dispensed...
July 23, 2009 at 4:23 am
Bharatvip (7/22/2009)
We have 11 databases and only 2 databases (not tables) that have data changing in them (get hit by the application). One of these two databases X (has about...
July 23, 2009 at 4:01 am
Herbie (7/22/2009)
so mssql sp1 really doesn't work for mirroring?
It does work in SP1. There have been improvements (performance-wise) in SP2 and SP3.
July 23, 2009 at 3:58 am
If you have a list of recipients in a CSV file, this should work:
$recpts = import-csv
if ($body.Length -gt 0)
{
#Create a .net mail client
$smtp = new-object Net.Mail.SmtpClient("10.4.54.22")
$subject="Microsoft SQL Service...
July 23, 2009 at 3:54 am
You could possibly create a named set using the MDX 'EXCEPT' function, e.g.
CREATE SET [YourCube].[SelectedProducts] AS
{ Except( [Products].[ProductName].AllMembers , { [Products].[ProductName].&[11],
[Products].[ProductName].&[12], [Products].[ProductName].&[13] } )
}
I'm making assumptions about what your Dimension...
July 22, 2009 at 10:33 am
Hi Vip,
I'm not sure that I fully understand what you are asking so if my reply does not address the questions you are asking, please shout!
1. Yes, you should be...
July 22, 2009 at 3:30 am
Hmm, ok. I notice that you are not using a fully-qualified TCP address, e.g. "TCP://svrbdb..com:5022".
Try specifying a fully-qualified TCP address.
Regards
Lempster
July 22, 2009 at 3:15 am
netstat -o will show you the established ports and as 1433 doesn't appear in the list then it should be available. You can confirm this by running: netstat -an |...
July 21, 2009 at 7:41 am
Viewing 15 posts - 421 through 435 (of 497 total)