Viewing 15 posts - 5,986 through 6,000 (of 6,678 total)
GilaMonster (10/27/2008)
ALTER TABLE < Table Name... October 27, 2008 at 2:57 pm
GilaMonster (10/27/2008)
stephen.wolfe (10/27/2008)
October 27, 2008 at 2:27 pm
alex (10/27/2008)
Garadin (10/9/2008)
October 27, 2008 at 1:43 pm
Steve Jones - Editor (10/27/2008)
October 27, 2008 at 1:41 pm
Lynn Pettis (10/27/2008)
October 27, 2008 at 1:26 pm
You are probably looking at an application locking scheme where a row is entered in a table to identify when a record/row is locked by a user.
You can find out...
October 27, 2008 at 1:18 pm
If you are looking to simplify the code, you could do something like:
If (@type In (1, 2))
Begin;
Execute ...
...
October 27, 2008 at 12:46 pm
Actually, the better option is:
1) Disable all non-clustered indexes
2) Truncate tables
3) Import data
4) Rebuild all indexes
That is for a full refresh process where you are extracting all data from the...
October 27, 2008 at 12:41 pm
No, what exactly are you trying to accomplish? If you can explain why you think you need a 'local' variable inside a CTE somebody here can definitely point you...
October 26, 2008 at 3:03 pm
A couple of things you should be aware of with this:
1) In SQL Server 2000 - the following works: servername.database..objectname, in SQL Server 2005 it will no longer work. ...
October 26, 2008 at 11:10 am
Upgrade to Excel 2007 - which can handle up to one million rows per sheet.
That would be the short term solution - the long term would be to normalize the...
October 26, 2008 at 10:29 am
You need to reference the objects themselves in the other database. For example:
SELECT ...
FROM dbo.Table1
Accesses Table1 in the current database.
SELECT ...
FROM db1.dbo.Table1
Accesses Table1...
October 24, 2008 at 3:51 pm
No - SQL Server 2000 is only available on IA64. You can, however - run SQL Server 2000 (32bit) on Windows Server 2003 x64).
October 24, 2008 at 11:45 am
Sounds to me like what you want is to select from ptSchedule and join in the results from a pivot on the description field from Appointments. If so, then...
October 24, 2008 at 11:43 am
Another way to look at this would be:
INSERT INTO dbo.Table (col1, datecolumn)
SELECT 'my column 1'
,getdate()
FROM dbo.TableWith10000Rows;
In the above statement,...
October 24, 2008 at 11:35 am
Viewing 15 posts - 5,986 through 6,000 (of 6,678 total)