Viewing 15 posts - 2,026 through 2,040 (of 2,486 total)
Also, check if the auto-close option is set for databases on the remote server. If it is, EM will appear to hang while it opens all the databases prior to...
October 15, 2003 at 5:28 pm
Try this,
SELECT db_name(), fs.*
FROM OPENQUERY(<your server>, 'SET FMTONLY OFF EXEC(''DBCC SHOWFILESTATS'')') as fs
Hope this helps
Phill Carter
--------------------
Colt 45 - the original point and click interface
October 14, 2003 at 7:48 pm
Run SELECT @@VERSION then check the version number against the list found here,
http://www.sqlsecurity.com/DesktopDefault.aspx?tabindex=3&tabid=4
Hope this helps
Phill Carter
--------------------
Colt 45 - the original point and click interface
October 13, 2003 at 7:55 pm
Haven't had this problem before. The workflow worked for me when I setup 140+ packages with 4 levels.
Are you sure you're failing the child package? We had an issue when...
October 13, 2003 at 5:30 pm
quote:
Hello,I have problem of making connection to the Excel file with the following connection string...
"Provider=Microsoft.Jet.OLEDB.4.0;Data Source=c:\Test.xls;Extended Properties=Excel 8.0;"
In the above connection string...
October 13, 2003 at 1:38 am
KudahX
Can you schedule the DTS package to execute successfully? It could be a permissions problem. When you manually execute the package it is using your security credentials. Executing via scheduled...
October 13, 2003 at 1:36 am
Are there any error messages in the log? Try restoring with the STATS parameter to get progress details.
Hope this helps
Phill Carter
--------------------
Colt 45 - the original point and click interface
October 12, 2003 at 5:26 pm
What sort of error messages are you getting?
Hope this helps
Phill Carter
--------------------
Colt 45 - the original point and click interface
October 12, 2003 at 5:22 pm
When you say 'then go back in, ...', are you checking the scheduled job that was created when you click ok, or are you choosing schedule from the DTS package?
If...
October 12, 2003 at 5:21 pm
There is quite possibly a better idea, but what about the USERNAME environment variable?
Hope this helps
Phill Carter
--------------------
Colt 45 - the original point and click interface
October 9, 2003 at 11:52 pm
Instead of creating a stored procedure, us a function.
If you have to use a stored procedure, try using OPENROWSET.
Your example would look like,
CREATE PROC usp_Test_SPExec
As
SELECT 1...
October 9, 2003 at 11:45 pm
It doesn't matter where you create the function. You can specify the database name when you call the function.
eg: MyDb.dbo.MyFunction
Hope this helps
Phill Carter
--------------------
Colt 45 - the original point and...
October 9, 2003 at 5:45 pm
In Query Analyzer you can choose "Results to File.." and it will prompt you for a filename.
To perform the same function using OSQL, use the -o option.
Hope this helps
Phill Carter
--------------------
Colt...
October 9, 2003 at 5:43 pm
Here's a couple of good resources,
http://www.devhood.com/messages/message_threads-2.aspx?category_id=53
http://www.asp.net/Forums/Default.aspx?tabindex=1&tabid=39
http://www.vbdotnetheaven.com/
Hope this helps
Phill Carter
--------------------
Colt 45 - the original point and click interface
October 9, 2003 at 5:17 pm
Setup your bulk insert as a scheduled job and get your user to execute sp_start_job.
Hope this helps
Phill Carter
--------------------
Colt 45 - the original point and click interface
October 9, 2003 at 5:09 pm
Viewing 15 posts - 2,026 through 2,040 (of 2,486 total)