Viewing 15 posts - 1,531 through 1,545 (of 11,678 total)
What's very important for that exam is the order in which you do things.
E.g.:
* what are the steps to set-up mirroring
* what are the steps to set-up always-on
* what are...
October 28, 2014 at 2:00 am
SAP is still a major vendor and SAP people tend to get paid OK.
So it's not necessarily a bad idea to learn the BI products of SAP.
Besides, it is still...
October 28, 2014 at 1:54 am
The easiest solution is that you have a column in your time dimension that indicates the last month. Then you can simply filter on that column.
October 28, 2014 at 1:49 am
shield_21 (10/27/2014)
Which one...
October 28, 2014 at 1:48 am
serg-52 (10/28/2014)
"only one null " is someway misleading. Precisley it's a "only one null value per column".
If the unique index is not a filtered index 😉
October 28, 2014 at 1:36 am
On second thought: the CSV option is the text file. But it has the .csv extension of course, but you can change this yourself in the "Save As" menu.
If you...
October 27, 2014 at 1:44 pm
Check the configuration file of SSRS to see if it is enabled.
October 27, 2014 at 1:38 pm
Did you run IE as administrator?
October 27, 2014 at 1:36 pm
Maybe some explanation what you are trying to do is needed.
Preferably in the form of table DDL, sample data and desired output.
See the link in my signature about asking questions.
October 27, 2014 at 1:22 pm
mohammedaala (10/27/2014)
October 27, 2014 at 5:10 am
Tony Bater (10/27/2014)
I followed your link and used the steps there...
1. Restart SQL Server in single user mode
2. Start SSMS as administrator
3. Connect to SQL Server using object explorer
It...
October 27, 2014 at 5:06 am
lefrancisco1 (10/27/2014)
Can anyone give me one sample SP Since iam new to SP
CREATE PROCEDURE (Transact-SQL)
There are examples at the bottom.
October 27, 2014 at 4:57 am
GilaMonster (10/27/2014)
Never tried SQL Server with the Windows Live logins, I configured my win 8 box to use a local machine login instead.
I did it on my previous laptop without...
October 27, 2014 at 4:45 am
I would insert the result sets from both SPs in temporary tables and then simply join them together.
INSERT INTO #temp1
EXEC SP1;
INSERT INTO #temp2
EXEC SP2;
SELECT *
FROM #temp1
JOIN #temp2 ON ...
October 27, 2014 at 4:44 am
Viewing 15 posts - 1,531 through 1,545 (of 11,678 total)