Viewing 15 posts - 4,231 through 4,245 (of 7,191 total)
What permission does the user have, if not sysadmin? To manage jobs, membership of certain role(s) in msdb is necessary.
John
December 7, 2012 at 7:46 am
And your question is?
It's best to run SSMS on the computer on which the package resides when you're setting up SSIS jobs. If you run it on a client...
December 7, 2012 at 7:00 am
Suresh
Please will you post the query? What is the difference in the number of rows? Is anyone else using the database? If you drop the index and...
December 6, 2012 at 6:07 am
Put a [font="Courier New"]PRINT @q[/font] in your script and you'll see why that's happening.
John
December 6, 2012 at 5:48 am
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
Viewing 15 posts - 4,231 through 4,245 (of 7,191 total)