Viewing 15 posts - 4,231 through 4,245 (of 7,187 total)
Charles
You're right - you don't set the location of the config file in the config file. See my first post above for how you do that.
John
December 6, 2012 at 1:20 am
Charles
Not sure I understand. If your variable takes its value from the config file, you should have a line something like this in the file:
<Configuration ConfiguredType="Property" Path="\Package.Variables[User::MyVariable].Properties[Value]" ValueType="String">
...
December 3, 2012 at 8:52 am
sqlGDBA (11/30/2012)
I think you only need to change the SQL Agent service account, not the SQL Server service account.
Yes, if you're running all your backups as scheduled jobs, that's true....
December 3, 2012 at 8:44 am
Charles
The config file is specified by right-clicking on the design surface in BIDS and choosing Package Configurations. You can specify a different config file at run-time when running a...
December 3, 2012 at 8:31 am
It depends what works best for you. I must admit it's not something I've ever used myself. If you only have the default (PRIMARY) filegroup then there's no...
November 30, 2012 at 7:45 am
It depends on the business requirements. If you do log backups every two hours, you're saying you can afford to lose two hours' worth of data in the event...
November 30, 2012 at 7:24 am
Not sure. One way you can investigate is by running a Profiler trace when you click on Views in SSMS to see what SQL Server does in the background....
November 30, 2012 at 5:03 am
When you say he can't see any views, where is he looking? Are you sure that views actually exist in the database? Can he see tables, functions, stored...
November 30, 2012 at 3:55 am
This might work, although it didn't return any rows on my server:
WITH Partitioned AS (-- Partition into separate items
SELECT
ServerName
,Instance
,Name
,Value
,ROW_NUMBER() OVER (PARTITION BY ServerName, Instance, Name ORDER BY Date DESC) RowNo
FROM
tempserverConfig
)
,MostRecent...
November 29, 2012 at 8:57 am
OK, well done. Just one comment. If you use the same column (episode number) in your ORDER BY and PARTITION BY clause, you're saying that you're not bothered...
November 29, 2012 at 8:11 am
You need to use the ROW_NUMBER function with a PARTITION BY clause.
John
November 29, 2012 at 7:36 am
What port is SQL Server on PC1 listening on? If it's not the default, and if you don't have SQL Browser running on PC1, then you need to specify...
November 29, 2012 at 3:57 am
I don't imagine so, but I wouldn't swear to it. Somebody else may have an answer.
John
November 28, 2012 at 9:19 am
Have a read about cross database ownership chaining and post back if there's anything you still don't understand.
John
November 28, 2012 at 9:06 am
And what does that stored procedure do? Does it attempt to send an e-mail? Do you receive the e-mail if you execute the stored procedure outside of the...
November 28, 2012 at 8:33 am
Viewing 15 posts - 4,231 through 4,245 (of 7,187 total)