Viewing 15 posts - 1,396 through 1,410 (of 1,492 total)
We have an OU in AD that we manage for our security. It's our OU, and we manage the Groups. This avoids the situation you are running into, especially when...
October 13, 2008 at 8:06 am
See if this is what you were looking for.
Greg E
October 10, 2008 at 6:26 am
sonashish (10/7/2008)
Thanks for the response. Actually this database is very old 5-6 year old, client doesnt want to change the data structure, so I have no option, I have...
October 9, 2008 at 7:14 am
Download a trial version of Dundas. You should be able to find some samples.
This sounds like you'd want to do something like Jan - Mar as series 1 line, then...
October 9, 2008 at 6:33 am
If you currently are doing any summary tables off the data, you could use them as a guideline for Dimensions and Measures you'd want in the cube.
You'll always have a...
October 8, 2008 at 6:36 am
Is creating an application to allow data entry / maintenance - getting the data into SQL server, out of Excel, an option?
Then you wouldn't have to worry about importing. And...
October 7, 2008 at 8:33 am
Try setting just your variables and then print them. Sometimes when working with a Date Timestamp, you aren't getting the value you expect.
Greg E
October 7, 2008 at 7:41 am
I agree more with Steve. It's way too easy to post information / create a site posing as someone else. And even more difficult for the real person to get...
October 6, 2008 at 8:17 am
Run your VS, then run the same test going through your website.
Take a look in the security log on the SQL server and see what User ID is being used...
October 2, 2008 at 12:44 pm
It sounds like you have both SQL Server and Analysis services on the same machine.
Be sure to limit the memory for SQL server and adjust SSAS memory too. Consider what...
September 30, 2008 at 2:35 pm
I recall the first time you access a Citrix server, you can allow access to your local files.
You might have them delete your profile on the server and see...
September 30, 2008 at 6:54 am
here's a snippet of taking a date and making a column for grouping by week.
select
*,
cast(datepart(yy,salesdate)as char(4))+ ' - ' + cast(datepart(wk,salesdate) as char(2))
from
#daily
you may want to experiment with mm too
Greg...
September 2, 2008 at 9:58 am
check out DatePart in books online.
Just remember that a week can span 2 Calendar months....
Greg E
September 2, 2008 at 9:11 am
Don't know if you need a Fiscal Calendar, - in ours, every week starts on Sunday and ends on Saturday, with 4wk, 4wk, 5 wk months. It has Calendar Date,...
September 2, 2008 at 8:26 am
Just in case you find yourself needing to reboot a service....not because you'd need to on SQL Server 2005. I've found this platform manages memory much better than in the...
September 2, 2008 at 7:53 am
Viewing 15 posts - 1,396 through 1,410 (of 1,492 total)