Viewing 15 posts - 346 through 360 (of 426 total)
Depends on what FTP client your are using, Windows XP FTP (command line) supports wildcards in the file name, see XP Help for FTP subcommands, you can use the glob...
July 4, 2005 at 10:27 pm
July 1, 2005 at 1:17 am
I implemented a SQL Server Agent job to do these FTP Push tasks from NJ to CA without DTS. I found that the FTP Put will max out the T-1 between...
July 1, 2005 at 12:15 am
ODBC and OLEDB use SQL Server features that need to be kept in sync with the MDAC version the 3rd party application is using. So check the 3rd party application...
June 30, 2005 at 3:29 am
I posted a script that I used to debug an application for deadlocking. This script is currently waiting for approval, so when it is available you can get it here:
June 30, 2005 at 2:34 am
You might also look at SET TEXTSIZE in BOL, to work beyond the 8000 limit for a varchar.
Andy
June 29, 2005 at 11:52 am
Comparing a text field will be problematic once it gets too large, check out this new script for a easy way to determine if the text fields are an exact checksum match:
June 29, 2005 at 12:06 am
There is no ODBC option for the SQL Server ODBC driver to connect to a file. Sounds like you are confusing Access and SQL Server.
SQL Server is a server side...
June 28, 2005 at 11:28 pm
If you are using SQL Mail, then:
Login as the new domain account and create a new Outlook profile.
Run EM:
Assign SQL Mail this new profile.
SQL Agent properties:
If you are using the domain...
June 28, 2005 at 11:14 pm
Check out this script:
http://www.sqlservercentral.com/scripts/contributions/764.asp
I use it every week and it works for me.
Andy
June 24, 2005 at 2:40 am
Try this:
SELECT TOP 10 u.Serial, r.Model, u.Release, d.EventDate
FROM Release r
LEFT JOIN Production_Unit u ON u.Release = r.Release
LEFT JOIN Production_Detail d ON u.Serial = d.Serial
and d.EventID = 'PO' And d.EventPF...
June 24, 2005 at 2:25 am
SELECT CONVERT(varchar,CAST(123456.9901 AS money),1)
Andy
June 24, 2005 at 2:09 am
One thing to check is the Windows 2000 MDAC version, XP service packs update MDAC, and since Windows 2000 doesn't you may have to deploy a MDAC update.
Another that may...
June 23, 2005 at 2:25 am
Go to BOL, Shrinking the Transaction Log:
mk:@MSITStore:C:\Program%20Files\Microsoft%20SQL%20Server\80\Tools\Books\architec.chm::/8_ar_da2_1uzr.htm
Change your DBCC statement to:
DBCC SHRINKDATABASE (tempdb, 10) WITH NO_INFOMSGS
Andy
June 23, 2005 at 1:46 am
You could create another Job scheduled a few minutes after the hour to perform a CmdExec MOVE ... operation. The few minutes should be greater than the worst case log...
June 23, 2005 at 1:23 am
Viewing 15 posts - 346 through 360 (of 426 total)