Viewing 15 posts - 91 through 105 (of 522 total)
There is no similar UI in SQL 2005. As far as I know, licence is just a legal paper work in SQL 2005.
February 27, 2007 at 7:19 am
If I understand correctly, when you are loading current cycle data, users still need to read data from previous cycle.
Partition may be not the best solution unless you explicitly add...
February 16, 2007 at 6:26 am
How do you read data? Do you read data by time range like from 9:00 to 10:00? or just for the current cycle?
The solution can be very different based on...
February 15, 2007 at 7:04 am
I defined a federated server with dozens of distributed partitioned views before. I remember it was very easy to make mistakes when definining those partitioned views, like overlapping of check constraint....
February 13, 2007 at 7:00 am
Eddie is right, you don't need to put the where clauses in the view. They are defined in the CHECK constraint
February 12, 2007 at 6:30 am
Can you post the schema of one of the member tables?
February 9, 2007 at 7:03 am
You can use the new BULK option in OPENROWSET in sql 2005 to easily load files to database. E.g. loading the content of file C:\Test\Orders.txt to a variable:
DECLARE...
February 6, 2007 at 12:20 pm
Check the bugs fixed in SP2, you will know what I mean.
http://support.microsoft.com/?kbid=921896
I can't put SQL server 2005 in production without those fixes.
January 31, 2007 at 6:42 am
Maybe you already solved your issue. The following query works:
SELECT
DataSetRowID as RowID, VersionPersistID, XMLValues
FROM
tblDataSetValues
December 27, 2006 at 8:27 am
I usually have three scenarios to keep deleted rows in table with IsDeleted flag:
1) Asny deletetion. The deleting table is heavily referenced by many tables. A syn deletion cannot be done...
December 21, 2006 at 8:31 am
what i meant is that if a row is deleted, copy the value of col_1 (identity) to IsDeleted column. To check a row is deleted or not, check IsDeleted>0.
IsDeleted can be...
December 21, 2006 at 7:53 am
Use bit for IsDeleted in some cases can cause problem.
In most cases, besides the artificial key, a table has columns must be unique in business point of view, lets say...
December 21, 2006 at 7:37 am
It's not notification service. Event notification is built in sql engine. It's a new feature in sql2005 utilizing sql service broker.
December 13, 2006 at 10:07 am
THe following is the implementation of sp_spaceused in 2005. You can compare it with that of SQL 2000.
create procedure sys.sp_spaceused --- 2003/05/19 14:00
@objname nvarchar(776) = null, -- The...
December 13, 2006 at 7:02 am
Viewing 15 posts - 91 through 105 (of 522 total)