Viewing 15 posts - 2,761 through 2,775 (of 3,616 total)
When you say modified I presume that you mean structure rather than data? That is a column has been added/deleted from a table rather than a new record added?
There...
April 18, 2005 at 1:42 am
What is the login account for the service?
Is it the same as the MSSQLSERVER login account?
If not:
Does it have logon as service rights?
Does it have suitable permissions to run the...
April 15, 2005 at 9:47 am
I have not come across this one before but I would guess that the confusion is caused by the source and target machines being set to different locales
British Date DMY
American...
April 15, 2005 at 9:33 am
MSDE is a cut down version of SQL Server without any front end tools. Maximum database size is 2GB and max ram is 2GB.
If you are talking about small,...
April 14, 2005 at 2:40 pm
If you use EM you can cause locking problems if other users are connected.
Unless you are talking millions of records I find that if I need manual updates I export...
April 14, 2005 at 2:34 pm
Don't forget you need suitable permissions on the SQL2000 box to do this.
You may have read/write access to tables but DDL statements such as CREATE, ALTER and DROP may not...
April 14, 2005 at 2:26 pm
I'm not suggesting we should be just database geeks or stand Canute like before the .NET tide.
I'm facing a situation where I have inheritted a mission critical system that was...
April 13, 2005 at 1:53 am
C:\WINNT\system32\os2 ?????????
Look in the C:\WINNT\system32\os2\DLL folder and see a DLL called doscalls.dll
Write out a million times "I must not be cynical".
You know morale is low when the company does a...
April 12, 2005 at 1:55 am
CREATE TABLE dbo.Product (
ID Int Identity (1,1) NOT NULL,
ProductName VARCHAR(50) NOT NULL ,
...etc
)
The parameters of identity are the start value of the sequence and the increment.
You can...
April 12, 2005 at 1:23 am
The great thing about an X-box is that you can chip it, upgrade the hard disk and get a fairly decent linux install on it for £99!
I think the hand...
April 11, 2005 at 1:47 am
Absolutely not.
SQL 6.5 is a totally different architecture to SQL 7 and onwards.
SQL 6.5 is nearer to SyBase on UNIX than it is to SQL 7 on Windows.
You can connect...
April 8, 2005 at 10:35 am
I suspect that you can't have an autogrowing file but there is a registry setting that allows you to specify the number of logs you keep.
[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\MSSQLServer\MSSQLServer] "NumErrorLogs"=dword:00000010
The problem with having...
April 8, 2005 at 2:51 am
They don't even have to be SQL Servers!
April 6, 2005 at 12:53 pm
In your line
[Sales]*[Cdisc]/100 AS [Set Disc], [GP]-[Set Disc] AS [Adj GP Pre Rebate]
I don't think that you can define [Set Disc] and use it in one statement.
Try
[Sales]*[Cdisc]/100 AS [Set Disc],...
April 6, 2005 at 12:51 pm
In your transformations there is an "options" tab. There is an exception file tab. If you have a file name filled in either remove it or make sure...
April 6, 2005 at 12:41 pm
Viewing 15 posts - 2,761 through 2,775 (of 3,616 total)