Viewing 15 posts - 1,711 through 1,725 (of 2,486 total)
As one who has been bitten by "On Error Resum Next" I now eliminate it wherever it's encountered. The following snippet is much better for VBScript error handling
On Error Resume...
August 3, 2004 at 9:29 pm
In addition to xp_dirtree, you can use xp_getfiledetails to return detailed information about a file or folder.
eg: xp_getfiledetails 'C:\Temp\test.txt'
July 27, 2004 at 9:06 pm
Firstly, why do you want to turn them off?? Is your log getting to big? If so, why not use sp_cycleerrorlog to create a new log file. You can adjust...
July 27, 2004 at 8:49 pm
Also, for efficiencies sake, you should specify a column in the SELECT statement.
EG:
WHERE NOT EXISTS (SELECT [your id fields] FROM MAXSYR etc...)
This will prevent the query from spooling up the...
July 27, 2004 at 5:17 pm
For a far simpler method, check the answer to one of my past posts,
http://www.sqlservercentral.com/forums/shwmessage.aspx?forumid=8&messageid=100177
July 27, 2004 at 5:06 pm
Interesting to note that the date the ISO was posted is 21st July, yet there were no official announcements until the 26th.
Does it take 5 days to upload a 600mb...
July 27, 2004 at 4:52 pm
As you mention, the test from sysmessages isn't that helpful.
Try this interesting technique,
July 26, 2004 at 11:00 pm
So where exactly does it fail and what is the error message?
Does it get to the xp_sendmail part?
July 26, 2004 at 10:55 pm
Make the domain account a LOCAL administrator, or specifically grant it access to write to the event log.
July 13, 2004 at 5:05 pm
There will be a Management Tool for SQL Express 2005 shipping at a later date.
In VB 2005, I believe if you open a new database project you can then create...
July 13, 2004 at 5:03 pm
You'll need to use a subquery, or derived table.
EG:
SET NOCOUNT ON
CREATE TABLE #TABLE_REPORTS (
[user_id] char(1)
, report_name varchar(10)
, descr varchar(50)
)
INSERT INTO #TABLE_REPORTS
VALUES ('A', 'report_a', 'first month report')
INSERT INTO #TABLE_REPORTS
VALUES...
July 11, 2004 at 11:27 pm
This depends on whether you want to shell out for another SQL Server License or not. Installing Reporting Services on your existing SQL Server will avoid that. Installing it on...
July 11, 2004 at 9:59 pm
A Grand Total is generated for the first "Row Group".
Eg: If you have subtotals for three row groups (Country, State, City) you will get a subtotal of cities for each...
July 11, 2004 at 9:55 pm
Where is the ReportServer installed? Is it on the same machine that you are developing reports on? If not, youll need to change the project properties to point to the...
July 11, 2004 at 9:38 pm
Viewing 15 posts - 1,711 through 1,725 (of 2,486 total)