Viewing 15 posts - 256 through 270 (of 427 total)
You can also try:
a.CustomerID = b.CustomerID and a.LocationID = NULLIF(b.LocationID,'')
Andy
October 28, 2005 at 4:30 am
Lookup sp_add_job* on BOL (Books Online).
Andy
October 26, 2005 at 12:22 am
Create the "database" in dBASE IV and import the data into that table.
Or edit the transform of the database creation defaults in EM before you run the export.
There will...
October 26, 2005 at 12:11 am
Save your money for 2005, most of the 2003 tools are all but dead. 2005 should be shipping in a couple of weeks...
As others have shown, install IIS 5 from...
October 26, 2005 at 12:01 am
Short answer, don't Windows login from ASP, Use SQL Server login instead:
ASP
http://support.microsoft.com/default.aspx?scid=kb;en-us;307002
ASP.NET
http://support.microsoft.com/default.aspx?scid=kb;en-us;316989
Andy
October 25, 2005 at 11:38 pm
Add:
Installed Outlook with CDO option (must use Custom install for Outlook and choose to install CDO as CDO is not installed for Typical install).
Changed SQL Server Agent service account to...
October 25, 2005 at 2:05 am
I see that Microsoft is saying that SQL Server 2000 post sp4 patches will be available from Microsoft Update or WSUS, so maybe you should talk to your OS patch...
October 14, 2005 at 2:54 am
So did you restart the machine and try again, as the error states?
Also check out:
http://support.microsoft.com/default.aspx?scid=kb;en-us;312995
Andy
October 7, 2005 at 12:13 am
Does the problem box have the BUILTIN\Administrators account as sysadmin? Check out the KB 317746 article.
Andy
October 7, 2005 at 12:07 am
You can also define Simple for new databases by modifying this setting on the model database (the basis for all new databases).
Andy
October 6, 2005 at 11:58 pm
You should also investigate your Windows OS, XP does not have a server edition, it is effectively a workstation OS, and SQL Server 2000 only supports the Developer Edition on...
October 6, 2005 at 11:52 pm
You should verify the SQL Agent Properties on the Connection tab, to insure that this is not set for sa, otherwise you will have to change the password here as...
October 6, 2005 at 11:31 pm
I don't think that ABS is going to fix the design issue, only mask the error. What if:
last_Name = 'Do' and first_name = 'Robert Henry
last_Name + left(first_name,ABS(len(last_name)-9))
Would result in 'DoRobert...
October 6, 2005 at 11:12 pm
Since SQL Server will have no problem converting a char(4) to a varchar(4) including existing data, use:
ALTER TABLE TableName ALTER COLUMN
Name varchar(4) NOT NULL
UPDATE TableName SET Name = RTRIM(Name)
This last part...
October 6, 2005 at 10:55 pm
Viewing 15 posts - 256 through 270 (of 427 total)