Viewing 15 posts - 61 through 75 (of 122 total)
Great job this is one of the most reliable SQL sites on the web!
January 29, 2009 at 8:40 am
I want to agree with the set up the error output. It is also a good to run the whole set and look at all data that will cause you...
January 29, 2009 at 7:26 am
As long as you use developer edition you can either check the save package at the end of the Import data wizard and create a file. Or using visual studio...
January 21, 2009 at 2:01 pm
You don't say but how is the sheet getting updated?
Is it a single user or an application feeding the sheet?
January 20, 2009 at 12:12 pm
Great with access to visual studio you can create the xml and xslt schema and validators. After they are validated you can then use ADO.NET to insert the records into...
January 15, 2009 at 9:20 am
I have a question I have several packages that I run on several different servers both by using SQL Agent for the Standard and Enterprise editions and using a Standard...
January 14, 2009 at 9:00 am
Reporting services for 2005 needs to have a separate SQL license to run on a machine other than the machine it is deployed on. If you are trying to remotely...
January 13, 2009 at 1:26 pm
Do you have access / license for Visual Studio .NET?
January 13, 2009 at 7:10 am
A record set in nothing more than a variable of type object.
In you data source you have a choice of destinations. Just set this destination to the variable and the...
January 9, 2009 at 7:27 am
You could create record set object and since the Excel script is fairly close and modify the recordset to output to a simple worksheet.
Just a thought
January 8, 2009 at 7:05 pm
It is not recommended practice as the Excel object is well know for not closing correctly. but to do what you want you will need to install Excel or purchase...
January 8, 2009 at 2:29 pm
Yes we are running x64 in a as400 shop and used to used tto and csv files to do all of the transfers from the as400. I never got the...
January 6, 2009 at 2:38 pm
Congratulations!
Amazing what can be found when something doesn't work.
January 5, 2009 at 1:31 pm
You can always use the old method with a cursor:
SELECT DISTINCT s_mf.database_id
from sys.master_files s_mf
where s_mf.state = 0 -- ONLINE
AND has_dbaccess(db_name(s_mf.database_id)) = 1 -- Only look at databases to which we...
January 5, 2009 at 9:17 am
This goes along with the previous answer does the user have permission to select on sys.objects on all databases?
January 5, 2009 at 7:52 am
Viewing 15 posts - 61 through 75 (of 122 total)