Viewing 15 posts - 1 through 15 (of 172 total)
It seems to me that you are using the wrong hammer. can you set up a SSIS job to dump the list nightly to a share somewhere? then...
July 16, 2010 at 11:27 am
try something like this
restore database def from disk = 'BAK file name'
with move 'DEF_Data' to 'DEF_New_data.MDF',
move 'DEF_Log' to 'DEF_New_log.ldf'
'BAK file name' = the fully qualified...
June 21, 2010 at 11:53 am
take a look at fn_listextendedproperty in BOL. this will enable you to query the extended properties, from there you can come up with some kind of report.
June 9, 2010 at 11:51 am
I am seeing this trying to restore a sql2000 master databsae to a sql 2005 database with another name for the master database. the old version doesn't restore on...
May 17, 2010 at 4:44 pm
write a batch file one osql per server...
osql -S"server1" -Uusername-Ppassword -dmsdb -ijob_stop.sql -olog.txt
type log.txt>>finallog.txt"
osql -S"server2" -Uusername-Ppassword -dmsdb -ijob_stop.sql -olog.txt
type log.txt>>finallog.txt"
osql -S"server3" -Uusername-Ppassword -dmsdb -ijob_stop.sql -olog.txt
type log.txt>>finallog.txt"
osql -S"server4"...
November 18, 2009 at 10:51 am
Is the path on the server the same as the path on your workstation? The exec xp_cmdshell is running on the server, not your workstation.
October 2, 2009 at 8:44 am
We did something like this at a previous employer. We ended up monitoring so many servers and so many processes we had a consolidated display with stoplights. Green...
April 20, 2009 at 10:28 am
Nice! the trick is figuring out how to talk to sharepoint. I've filed away your code for future reference. I also liked the reference to the C#...
April 8, 2009 at 12:24 pm
I don't know if this is supported by SSIS but FTP has a "Quote" command that lets you run a command on the ftp server. these are called Site...
July 10, 2008 at 9:00 am
Here's a bunch of connection strings depending on which provider and what options you want to use. I usually go here first to snag a connection string for a...
June 26, 2008 at 4:23 pm
you may need to tell the system which data source you want to use. in my C# i'm calling the SetReportDataSources method to hook the report to the datasource....
June 23, 2008 at 5:06 pm
i don't know of any way to get the name in code from the subreport. can you pass the parent report name in as a parameter to the subreport?
June 19, 2008 at 10:49 am
Nope, you definitely don't have to mess with the firewall. I have set this up on many dev workstations and never touched it.
The problem you ran in to was...
June 19, 2008 at 9:40 am
Reporting services in 2000 won't let you use a dynamic image, the image can come from the database but not a file. haven't investigated 2005 yet.
June 11, 2008 at 9:57 am
If you batch file is always going to be running your batch file for "Today" you can use the environment variable %Date% to plug in todays date on the appropriate batch...
August 7, 2007 at 1:45 pm
Viewing 15 posts - 1 through 15 (of 172 total)