Viewing 15 posts - 1,756 through 1,770 (of 2,486 total)
when you use a pst file as your Outlook mail store, SQL Server will use the file while it's running.
When you connect via Remote Desktop, you are actually creating...
May 20, 2004 at 9:09 pm
Is this the entire query? Do you have other tables joined or a WHERE clause?
Can you put the query into a stored procedure and use the stored procedure as your...
May 20, 2004 at 9:04 pm
This is one of the many questions covered at http://www.sqldts.com
May 20, 2004 at 8:54 pm
When you reinstalled, did you uninstall first? If not, try that.
Also, try re-applying the latest service pack.
May 20, 2004 at 8:51 pm
In addition to Jeremy's comprehensive post, to run .sql scripts check out the OSQL utility in Books Online.
May 20, 2004 at 8:49 pm
You might also want to check the date settings on the server.
Where, and how, does the VB executable run?
May 20, 2004 at 8:47 pm
If you are using the Excel Application object to do things like formatting, etc... then no. Jet doesn't know about Excel properties.
May 20, 2004 at 8:43 pm
Why are you using ActiveXScript? Why not use the inbuilt workflow?
May 20, 2004 at 8:39 pm
When you define a dataset in Reporting Services you can manually enter the fields in the Dataset Properties dialog.
May 20, 2004 at 5:02 pm
It's nothing to do with views.
Try this example,
Run the following in Query Analyzer,
create table tmp (a int, b int, c int)
insert into tmp values ( 1, 2, 3)
insert into tmp...
May 20, 2004 at 4:41 pm
The reason for the error when running the estimated execution plan is because the procedure is not actually run, therefore the temp table is not created.
As I posted previously the...
May 20, 2004 at 4:25 pm
So are you exporting data using BCP or the DTS Datapump?
May 19, 2004 at 10:20 pm
For Deletes and Updates (which are actually deletes and inserts) the table will require a unique key to determine which record to delete.
May 19, 2004 at 10:17 pm
There are issues with using temp tables in reporting services. It has to do with the way the meta data is returned. It should work if you manually add the...
May 19, 2004 at 2:42 pm
Thanks for the response, but as I mentioned in my initial post, I can't delete all the records in the Production database.
May 18, 2004 at 12:29 am
Viewing 15 posts - 1,756 through 1,770 (of 2,486 total)