Viewing 15 posts - 2,866 through 2,880 (of 3,711 total)
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
I would second the motion to increase the frequency of off-site backups.
I tend to look at a backup on a disk as insurance against cock-ups.
Backup on a tape is insurance...
April 6, 2005 at 12:39 pm
Firstly, is your 80 column table normalised? If you can have a greatly varied set of update routines then it sort of suggests that the table design could...
April 6, 2005 at 2:12 am
Running the GUI profiler will absolutely cane your server. The command line utility has a much lower overhead.
April 4, 2005 at 11:16 am
OBJECTPROPERTY and OBJECT_ID
I could be wrong, it has been known before.
I read somewhere about user defined functions that they have to be evaluated on a row by row basis. ...
April 4, 2005 at 9:23 am
If calling a function results in row by row processing wouldn't it be better to resort to the old fashioned
IF EXISTS (SELECT 1 FROM dbo.SysObjects WHERE Type='U' AND Name='Customers')
April 4, 2005 at 7:46 am
Thanks, I've seen the option and it produces a /~Z string but not the individual parameters.
As BOL says that the user name and password options can be encrypted I was...
April 4, 2005 at 7:42 am
Make large cup of non-decaff coffee ![]()
I would put check backups first closely followed by check disk space and current server activity.
I have my...
April 4, 2005 at 3:35 am
March 31, 2005 at 8:12 am
I have been running the 818 hotfix for over a year now with no problems.
I thought SP3 was replaced with SP3a in any case and therefore you cannot download SP3.
The...
March 31, 2005 at 5:23 am
Firstly, I would replace the DELETE FROM statements with TRUNCTATE TABLE statements. These are faster and won't generate the same amount of log file activity.
Secondly, replace your SELECT INTO...
March 31, 2005 at 5:20 am
Viewing 15 posts - 2,866 through 2,880 (of 3,711 total)