Viewing 15 posts - 3,496 through 3,510 (of 7,496 total)
:blink: :blink: Where's my donckey 😀
I've been reading a bit on the cloud topic ..... already forgot the obvious :blush:
At my plant, we only have CI databases.
I have...
September 2, 2009 at 7:57 am
FWIW: concering the "dangers" of CLR modules ....
- http://www.sqlservercentral.com/Forums/FindPost457289.aspx
- http://www.sqlservercentral.com/Forums/Topic483423-386-1.aspx
September 2, 2009 at 7:33 am
Are you refering to SQL in the Cloud ?
I don't know :unsure:
We're not into cloud surfing .... at least not yet 😀
September 2, 2009 at 7:30 am
Hopping in way to late for this thread, but as I was confronted with application roles nolonger working in SQL2005 for a restored SQL2000 database....
BOL states:
The encrypt option is not...
September 2, 2009 at 3:08 am
I think you should alter one db to primary
Check "Pausing and Resuming Database Mirroring " in BOL !
Check "Database Mirroring How-to Topics " in BOL !
from BOL topic "How to:...
September 1, 2009 at 4:17 am
As Gail stated, CLR is not a replacement for TSQL procedures, it is just an addition to help where TSQL isn't performing well or just cannot do it.
Regarding content visibility:
-...
September 1, 2009 at 4:12 am
just to add a little bit :
- Keep in mind Connection pooling also keeps connections open ! By default it will retain at least one distinct connection for 60 seconds...
September 1, 2009 at 12:14 am
Ron (8/31/2009)
ALZDBA (8/31/2009)
Alter your where clause to
WHERE dbo_SAP_CUST.KUNNR <...
August 31, 2009 at 1:47 pm
Never use 'sa' !
Consider it only to be in SQLServer to get started and to perform some very basic SQLServer service tasks !
Create your own set of accounts.
Prefer windows...
August 31, 2009 at 10:29 am
That's because you have the condition on the SAP_Cust in the where clause, so are excluding NULLs (which are the non matching)
Alter your where clause to
WHERE dbo_SAP_CUST.KUNNR < '0000900000'
or...
August 31, 2009 at 10:21 am
can this be your Select query ... a little bit rewritten to avoid the row level count/sum selects ?
SELECT T.SectionID
, T.SectionOrder
...
August 31, 2009 at 7:26 am
another guess:
Wat's the relation for ScheduleUserID to the actual user and the actual test (s)he is conducting ?
Can a person take the same test more than once ?
You update query...
August 31, 2009 at 4:57 am
just my 2ct:
- your rows indeed aren't that wide, so this number of rows should be manageble.
- does your table have a clustering index (I guess it does, if you...
August 31, 2009 at 4:38 am
when removing a CLIX, the data will get rewritten to an 0 index (=heap).
Check out the structural changes of a heap vs a clustering index, and the effect this has...
August 29, 2009 at 5:49 am
- any chance on using SSIS to migrate your data from SQL to Oracle or the other way around ?
- if not, maybe a SQLCLR proc can help out. Also...
August 26, 2009 at 11:48 pm
Viewing 15 posts - 3,496 through 3,510 (of 7,496 total)