Viewing 15 posts - 3,931 through 3,945 (of 11,678 total)
Corruption is when something is actually wrong with the database. For example a page is corrupt and cannot be read anymore from disk.
Inconsisteny is a problem within the data itself...
January 14, 2014 at 4:57 am
You're dealing with type-specific stars. (see chapter 13 of Star Schema - The complete reference).
There are 3 options:
* create one dimension to support both. (option B) This is a good...
January 14, 2014 at 3:01 am
Great, detailed article. Thanks.
January 14, 2014 at 2:36 am
First you got to help us so that we can help you.
It would be great if you could post the DDL for the table and some sample data + desired...
January 14, 2014 at 12:19 am
At first sight it seems you're experiencing network issues.
Are you running the package on the same server where the database is?
January 13, 2014 at 11:59 pm
Easy question, but the way it is formulated it seems backups are entirely not possible (the MSDN page gives the same expression) and that your data is not safe. Azure...
January 13, 2014 at 11:55 pm
ramana3327 (1/13/2014)
Thanks.Yes I did in the same way, I removed the ldf file. It is working in 2008R2 but it is not working for me in 2012.
I'd be very...
January 13, 2014 at 1:30 pm
GilaMonster (1/13/2014)
January 13, 2014 at 5:42 am
That's too bad.
If you'd store the connection files on a shared drive, you'd be able to update the connection string once and every Excel workbook would pick up the changes.
January 13, 2014 at 5:23 am
The connections inside the Excel sheets should not be saved inside the Excel workbook itself, but in an external connection file. If this is the case, you can just modify...
January 13, 2014 at 4:38 am
Check the job history to see if the job failed. (did the job even start?)
January 13, 2014 at 3:15 am
CREATE TABLE #TEMP(Category NVARCHAR(100),Item NVARCHAR(100),Value NVARCHAR(100));
INSERT INTO #TEMP values('Small','PilotA1','AjJCC');
INSERT INTO #TEMP values('Large','PilotA1','ACC');
INSERT INTO #TEMP values('Small','PilotA2','BKC');
WITH CTE_T1 AS
(
SELECT Item, Value
FROM #TEMP
WHERE Category = 'SMALL'
)
,CTE_T2 AS
(
SELECT Item, Value
FROM #TEMP
WHERE Category = 'LARGE'
)
SELECT...
January 13, 2014 at 2:20 am
Right-click on Agent in SSMS. If "Start" has been greyed out, it is already running.
January 13, 2014 at 1:23 am
Just do a backup and restore for simply copying a database.
When you want to attach an MDF file without LDF, you need to remove the LDF file at the bottom...
January 13, 2014 at 1:21 am
Viewing 15 posts - 3,931 through 3,945 (of 11,678 total)