Viewing 15 posts - 196 through 210 (of 644 total)
Thanks for the nice question. Had the gut feel about the correct answer but tested it again on my desktop. 😎
August 9, 2012 at 7:56 am
Okay, I think I got it now :-). These are special traces run by SQL Server to provide proactive caching & notifications to SSAS.
It is well explained on jason's blog...
August 7, 2012 at 8:04 am
After digging in it looks like it is not a server side trace or a profiler trace. When checked from sys.dm_exec_sessions the host process is SQL Server Analysis Services &...
August 7, 2012 at 5:48 am
Lowell (8/6/2012)
i cannot get a trace to be created with either the options or the filename to be null;
it's wierd that you are able to see that.
i tried stuff like...
August 6, 2012 at 8:07 am
Please put the script over there. I can see only a text box which is really cleaned up 😀
August 6, 2012 at 1:32 am
Nice, easy one 🙂 With total 6 options available as answer choosing 5 was easy by leaving the SQL Server 2008 Standard Edition.
July 31, 2012 at 1:26 am
Although I got the point 😎 because I assumed that you are talking about huge log backup file size (because that is something to note when you use bulk logged...
July 30, 2012 at 7:19 am
Seattlemsp (7/26/2012)
You are all correct!The third table has duplics.
If the third table has duplics, is that possible eliminated the duplic return?
Sorry, my initial information didn't provide the accurate situation.
Thanks,
The third...
July 27, 2012 at 4:30 am
Little Nick (7/26/2012)
1.
2.
3.
4.
I've a question based on below image,
1. What's Log on as Local System account?
1. What's Log...
July 26, 2012 at 6:10 am
Please do not post duplicate threads.
http://www.sqlservercentral.com/Forums/Topic1335685-145-1.aspx?Update=1
amitsingh308 (7/26/2012)
CREATE FUNCTION InitCap (
@string varchar(255)
)
RETURNS varchar(255) AS
BEGIN
RETURN upper(left(@string, 1)) + right(@string, len(@string) - 1)
END
and then write...
July 26, 2012 at 5:19 am
Viewing 15 posts - 196 through 210 (of 644 total)