Viewing 15 posts - 376 through 390 (of 2,486 total)
From a DBA's perspective, first and foremost you need to guarantee the databases are successfully being backed up. Once you have a successful disk backup the file can be shunted...
April 26, 2006 at 4:49 am
I'd just use something like GZip and call it via WScript.Shell in the ActiveXScript task.
Much, much easier.
April 26, 2006 at 3:29 am
Also, we have a MSX/TSX setup so for some of our older DTS packages that don't read their config dynamically, we alter the job on the MSX server and then...
April 26, 2006 at 3:28 am
We run DTS packages on multiple servers and they each read their config info from a local table.
For administration, each of these tables are edited via a central ASP.Net...
April 26, 2006 at 3:25 am
If you're using Active Directory, you could setup a linked server to run LDAP queries.
April 25, 2006 at 10:42 pm
You can use the stock standard DIR command executed via xp_cmdshell. Just insert the result into a temp table.
EG:
CREATE TABLE #dir ( [ID] int IDENTITY(1,1) , [Dir] varchar(255) ) INSERT INTO #Dir([Dir]) EXEC...
April 25, 2006 at 10:37 pm
Just because you can do something doesn't mean it's a good idea
It would probably be better to backup to seperate files. That way...
April 25, 2006 at 10:26 pm
We use a database table to store this info. If the server is up and running then the table is available.
In fact we store all Global Variables for each package...
April 25, 2006 at 10:21 pm
Not to sure about 2005, but in SQL 2000 RS it was by design. We had to include an extra device info parameter to output ANSI characters.
April 21, 2006 at 11:29 pm
It's probably creating the CSV file in unicode format. SQL 2000 Reporting Services has the same issue.
April 20, 2006 at 4:46 pm
As noted on the home page the guys are aware of this issue and are trying to fix it ASAP.
I'm sure they're pulling many a late night to fix the...
April 20, 2006 at 4:44 pm
What I would do is have a short VBScript as the first step of the SQL Agent Job that checks for the file. Then just set the appropriate amount of...
April 13, 2006 at 8:47 am
That's easily done with a few global variables and a Dynamic Properties task.
April 10, 2006 at 7:23 am
300,000+ members and still growing is a testament to the great job done by all you guys.
I can't count the number of times I've come here to find the solution...
April 10, 2006 at 2:10 am
The idea of building the whole query as as string would work. Cons: (a) execution speed (can't be pre-compiled), (b) error detection (none at design/pre-compile/save time, only avail. at run-time),...
April 6, 2006 at 5:16 pm
Viewing 15 posts - 376 through 390 (of 2,486 total)