Viewing 15 posts - 1,756 through 1,770 (of 1,838 total)
Yes, different databases can easily have tables, views, stored procedures, whatever with the same name. Being a former Oracle person myself, it sounds like you do have a good...
October 1, 2008 at 3:45 pm
OK, thanks Gail for confirming that clustering does not have load balancing capability.
Does anyone have insight on what advantages if any clustering would have over mirroring? It...
October 1, 2008 at 6:48 am
Bill Mell (9/30/2008)
I was somewhat concerned that there might be insert issues for the random datetimes that are not in sequence with the bigint identity columns.
I can't think of any...
September 30, 2008 at 11:49 am
Bill Mell (9/30/2008)
There is a bigint identity column - probably the obvious choiceBut virtually all of the selects are based on a Datetime column.
You mentioned this is a high volume...
September 30, 2008 at 11:22 am
here's a WHERE EXISTS example for your code...
...
CASE WHEN EXISTS
(SELECT NULL FROM ForeignBins
WHERE CONVERT(INT, SUBSTRING(CardNum, 1, 9)) BETWEEN TopRange...
September 29, 2008 at 9:55 am
YSLGuru (9/24/2008)
The column will store a number (between 1 and 27)
This tells me that BIT would be too small. You'd have to use 5 BIT fields to cover all...
September 29, 2008 at 8:19 am
check out the CONVERT function in SQL Server, it will let you explicity decide what format the string is in to convert to date.
CONVERT(datetime, @mystringdatevariable, 103)
for examle, would expect...
September 29, 2008 at 8:01 am
The CAST function is closer to the SQL standard specification. While CONVERT is more propriatary, it does give you an advantage when working with the DATETIME datatype because you...
September 29, 2008 at 7:57 am
if you want to get the value just inserted into the table after your INSERT, and you know that the INSERT in your stored procedure only adds 1 row to...
September 29, 2008 at 7:44 am
I see a couple of things offhand, but you should still get the information that Gail requested.
davidsalazar01 (9/26/2008)
@firstTransId decimal,
@lastTransId decimal
AS
BEGIN
SET NOCOUNT ON
...
September 27, 2008 at 7:40 am
A few things to consider:
- What indexes do you have on these tables, and what is the clustered index on each table?
- Have you performed a trace in...
September 27, 2008 at 6:56 am
OK, so we have new information, I didn't realize before you were doing bulk loads every minute. How are your disks setup, RAID level etc. How is your...
September 27, 2008 at 6:46 am
How long does creating an index on 2 million rows take you? It would seem that trying to query from a 2 million row unorganized heap would almost always...
September 26, 2008 at 10:03 am
Do you have another college name in your table that includes the word AND? Just trying to narrow down if your problem is with this one particular college name...
September 26, 2008 at 9:56 am
I'm not sure I understand the nature of your question, but the database engine will automatically add space to the file(s) of the snapshot whenever the first time data on...
September 26, 2008 at 9:49 am
Viewing 15 posts - 1,756 through 1,770 (of 1,838 total)