Viewing 15 posts - 4,666 through 4,680 (of 6,400 total)
SSIS is not instance aware, it is server aware and is only used to query MSDB/FileSystem to list the packages stored within it when you connect to a SSIS server...
June 12, 2012 at 4:19 am
Can you provide sample data, ddl statements, expected outcome?
June 12, 2012 at 3:15 am
freecoder (6/12/2012)
June 12, 2012 at 2:59 am
Whats the reason behind having the blank titles in the second rows for each AID?
CREATE TABLE [dbo].[abcd](
[Aid] [int] IDENTITY(1,1) NOT NULL,
[Title] [varchar](50) NULL
) ON [PRIMARY]
insert into abcd (Title) values ('test1')
insert...
June 12, 2012 at 2:41 am
create one in your project in BIDS or create on in the SSRS web page
June 12, 2012 at 2:16 am
I've just run the script and it executes and shows the foreign keys under the table ok.
What permissions do you have to the databases, SA? dbo? ddladmin?
Can you see the...
June 12, 2012 at 2:13 am
Jai-SQL DBA (6/12/2012)
Hi Anthony..thx for responding...I just want to know Does it Lock the Data\Database if I Actually run any Query while Running CHECKDB
Depends!!!!
DBCC CHECKDB creates an internal...
June 12, 2012 at 1:45 am
Point 4,
Out of the three jobs, you would only need to stop the backup job as the copy and restore wont do anything should the backup not be in...
June 12, 2012 at 1:41 am
DBCC CHECKDB doesnt require downtime, what it will do is put the databases into a consistant state by rolling forward or back any transactions so that it can check for...
June 12, 2012 at 1:35 am
Not a problem, hope you have fun with SSIS
June 12, 2012 at 1:25 am
+1 for DBMail, why re-invent the wheel when its already there for you.
June 12, 2012 at 1:18 am
Reading through the MOAC book, its very limited in what it details in the actual couseware, I would say if you have a very basic knowledge of SQL and you...
June 11, 2012 at 8:29 am
I would say you have missed a step, I have just followed the steps and opened the packages and I see what the book says I should see.
I would go...
June 11, 2012 at 7:17 am
Lookup UPDATE in BOL or a search engine.
But basically you want to do a self join
UPDATE t1
SET t1.ID = LEFT(........t2.FilePath......)
FROM table t1
INNER JOIN
table t2
ON
t1.FilePath = t2.FilePath
June 11, 2012 at 7:10 am
skimming over the book, it seems that that part is trying to open the package you saved when running through the import export data wizard, you have done this and...
June 11, 2012 at 7:01 am
Viewing 15 posts - 4,666 through 4,680 (of 6,400 total)