Viewing 15 posts - 136 through 150 (of 663 total)
Slightly of the mark but never the less.
http://manuals.sybase.com/onlinebooks/group-as/asg1200e/aserefmn/@Generic__BookTextView/172152
Search for 99.
quote:
5005extents used
Specifies the number of extents allocated to the object in the partition...
September 15, 2003 at 2:35 am
May help a bit
http://www.sqlmag.com/Forums/messageview.cfm?catid=22&threadid=2089
From the thread
quote:
We replaced:"D:\DB\BackupFolder"
with
\\Servername\d$\DB\BackupFolder
September 15, 2003 at 2:15 am
Suresh_yaram just a side attraction.
Why do the dates seem to to the nearest second or is just coincidence. DateTime is to the nearest 3/1000 of a second which may help...
September 15, 2003 at 1:59 am
Not a 100% sure but on 2000 one cannot restore a specific table only, can restore a specific filegroup.
quote:
BOL 2000: If a...
September 14, 2003 at 11:28 pm
Some general info:
September 14, 2003 at 2:53 am
Feels a bit slow, maybe you should try it in a stored procedure
Create Table NewOld(New Char(1),Old Char(1))
Go
Insert NewOld values('B','A')
Insert NewOld values('C','B')
Insert NewOld values('F','B')
Insert...
September 13, 2003 at 7:46 pm
Agrees, costs of sum versus check and real sum. Sounded like he wanted his solution.
September 13, 2003 at 7:02 pm
Havent tried it, but what about If @@Error= 0 Return 1 Else Return 0 after the BULK INSERT statement
September 13, 2003 at 5:40 am
Maybe of some relevance.
See BOL 2000: Using Partitioned Views
quote:
The SQL Server query optimizer recognizes that the search condition in this SELECT statement...
September 13, 2003 at 5:28 am
Thanks, its helps to be in good company
Frank, maybe its time to drop the numbers game and get a more sociably tag
September 13, 2003 at 4:45 am
Agree with previous comments.
Maybe you can try IN versus the ORs
September 13, 2003 at 4:32 am
SET ANSI_WARNINGS On
SELECT Case When Sum(Case When Val Is NULL
Then 1
Else 0 End)>0
Then NULL
Else SUM(VAL) End
FROM (
SELECT 1 AS Val UNION
SELECT 2 UNION
SELECT...
September 13, 2003 at 4:18 am
Can multi records be involved? If multi then some records may exist and some may not exist in the second table
September 13, 2003 at 4:03 am
May help a bit
"Migrating from Oracle to SQL Server: Part I"
http://www.sql-server-performance.com/np_migrating_from_oracle_to_sql_server.asp
September 13, 2003 at 3:44 am
Viewing 15 posts - 136 through 150 (of 663 total)