Viewing 15 posts - 8,221 through 8,235 (of 13,882 total)
Welsh Corgi (7/28/2015)
The version number in the package is not valid. The version number cannot...
July 28, 2015 at 7:37 am
I am creating the environment and link via a post deploy script. I have checked all parameters have a variable and all are linked properly.
This may be your problem. There...
July 27, 2015 at 7:08 am
Adam McArdle (7/27/2015)
Lowell (7/27/2015)
if you used windows authentication, you would not need to encrypt the projects and data sources, and i think the problem would go away, right?
The vast majority...
July 27, 2015 at 6:58 am
Brandie Tarvin (7/27/2015)
TomThomson (7/26/2015)
Grant Fritchey (7/26/2015)
Managed to get a fully-loaded station wagon (four people plus bags) all the way up to 120MPH (195KPH) on the Autobahn.
Don't get caught at that...
July 27, 2015 at 5:35 am
Adam McArdle (7/27/2015)
One thing which is slightly off-putting is that you...
July 27, 2015 at 5:34 am
Are you logged in using Windows Authentication, by the way?
SSISDB-related activities generally work better if you are.
July 27, 2015 at 5:29 am
mandy-570563 (7/27/2015)
July 27, 2015 at 5:28 am
Naina_11 (7/27/2015)
This will give only the four rows for which there is data... I need result for all the months
select Mth = datename(month, dateadd(month, Mths.Mth, -1))
...
July 27, 2015 at 5:24 am
Create the table as usual, then add the FKs using ALTER TABLE:
alter table MyTable
add constraint MyTable_MyColumn_FK FOREIGN KEY ( MyColumn ) references MyOtherTable(PKColumn)
July 27, 2015 at 1:41 am
vipin_jha123 (7/27/2015)
[type_key] [int] NOT NULL,
[geog_key] [int] NOT NULL,
[Type_description] [nvarchar](50) NULL,
[Store_flag] [nvarchar](10) NULL,
[Type_short_desciption] [nvarchar](50) NULL,
[Type_long_desciption] [nvarchar](100) NULL,
PRIMARY KEY CLUSTERED
(
[type_key] ASC,
[geog_key] ASC
)
CREATE TABLE [dbo].[md_geographyleveltype](
[type_key] [int] NOT NULL,
[Type_description] [nvarchar](50) NULL,
[Store_flag]...
July 27, 2015 at 1:13 am
vipin_jha123 (7/27/2015)
I never created table on the basis of Data model diagram .
I have to create the 3 table on the basis of given Data model diagram.
there are 3...
July 27, 2015 at 12:38 am
That's no problem. SSMS is not licensed separately, so go ahead.
July 27, 2015 at 12:18 am
tt-615680 (7/24/2015)
@subject = 'Job Summary',
@profile_name = 'SQL SMTP',
@recipients = 'email address',
...
July 24, 2015 at 5:45 am
metroman17 (7/24/2015)
(ServerName varchar(128)
,ServiceName varchar(128)
,StatusOfService varchar(128)
,StatusAsOn datetime)
INSERT INTO @ServiceStatus (StatusOfService)
EXEC master..xp_servicecontrol 'QueryState', 'msdtc'
UPDATE @ServiceStatus
SET ServerName=cast(@@SERVERNAME as varchar(128))
,ServiceName='Microsoft Distributed Transaction Coordinator'
,StatusAsOn=GETDATE()
--WHERE ServerName IS NULL
SELECT * FROM...
July 24, 2015 at 4:07 am
I do not have dbo.Notifications.
Did you read the link in my signature?
July 24, 2015 at 1:18 am
Viewing 15 posts - 8,221 through 8,235 (of 13,882 total)