Viewing 15 posts - 2,281 through 2,295 (of 2,494 total)
Have you checked the obvious...
1) Do you have UPDATE rights on the DB2 database.
2) Is your syntax DB2 compliant. DB2 and SQL Server have a very similar SQL dialect, but...
January 9, 2006 at 2:47 am
I have just had a look at the DB2 for LUW SQL Reference manual and your query should work.
However, you need to be aware that DB2 running on the mainframe,...
December 22, 2005 at 5:15 am
A restore will apply your changes in the exact order in which they originally occurred. If restore worked in any other way, it would not be possible to do point-in-time...
December 20, 2005 at 3:31 am
Your tempdb only grows because SQL needs the space. Stop shrinking it! Plan to have a tempdb of whatever size is needed to service your application (be it 1GB or...
December 16, 2005 at 6:22 am
My understanding is that once you have migrated your DTS to SSIS, it can run on SQL2005 in either 32-bit or 64-bit mode.
December 7, 2005 at 3:15 am
This is the 64-bit edition of SQL Server, which runs on 64-bit hardware. Both SQL2000 and SQL2005 have 64-bit editions
DTS does not work on 64-bit SQL2000 because Microsoft never ported...
December 6, 2005 at 6:08 am
The answer is: 'It depends'.
If your table variable gets too big to hold in memory, SQL will automatically create a temporary table as backing storage. If your SQL has no...
November 30, 2005 at 4:00 am
Why are you shrinking your database files?
If your normal work pattern means that a shrunk database will revert to its original size within a month, then you are actually harming...
November 29, 2005 at 4:16 am
The number of connection attempts could be amalicious attack. Or it could be something like an in-house monitoring tool trying to check SQL Server health.
The suggestion about using Profiler to...
November 1, 2005 at 6:07 am
I was going to suggest the same as Yelena. If the user is a member of more than 1 group, and each group has a different default database, then you can...
November 1, 2005 at 5:58 am
You will certainly need to modify some Microsoft stored procedures to do what you want to achieve.
I looked at doing something similar, but my site is not prepared to modify...
October 11, 2005 at 3:56 am
Try DELETE .... WHERE CURRENT OF ...cursor. See Positioned Delete in BOL. This will allow you to delete a single row from a set of tue duplicates.
If you can...
October 10, 2005 at 6:37 am
You need to have permissions to start/stop the SQL services. This can be done using a local security template or via a GPO. Check with your infrastructure/security people to find...
October 10, 2005 at 6:31 am
My experience for 32-bit SQL Server is this:
1) The memory that SQL Server can address is dependant on Windows settings and SQL Server settings. The default is that any edition of...
October 7, 2005 at 5:30 am
Your proposed upgrade strategy appears to be designed to cause an outage.
I would look for an alternative, such as testing it first!
October 7, 2005 at 4:56 am
Viewing 15 posts - 2,281 through 2,295 (of 2,494 total)