Viewing 15 posts - 4,666 through 4,680 (of 6,395 total)
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
I would say you have opened the wrong solution, either the solutions do not match the book, or someone has modified the solutions.
Do you have the book CD and reading...
June 11, 2012 at 6:45 am
for example
Page 47 - Chapter 2 SQL Server Import and Export Wizard
Point 7 - In the control flow double click the preparation sql task
If you read the rest of the...
June 11, 2012 at 6:28 am
which book are you reading from?
June 11, 2012 at 6:15 am
There is no "Prepare SQL Task" it is "Execute SQL Task"
June 11, 2012 at 6:06 am
Viewing 15 posts - 4,666 through 4,680 (of 6,395 total)