Viewing 15 posts - 181 through 195 (of 322 total)
There is usually a small panel on the bottom which can be opened to access the RAM slot(s)
With the right size screw driver its as quick as swapping RAM on...
May 13, 2009 at 7:02 am
Beaten to it!
Thats what I get for testing the code 😛
May 13, 2009 at 6:59 am
Your missing another +7
declare @string varchar(1000)
SET @string = 'BladieblaDiebladi bladibla blabla, View = AnyViewName_without_a_space Export to ADirectory wher spaces can occur\Filename.csv'
SELECT charindex('view = ',@string) AS result1,
...
May 13, 2009 at 6:57 am
FreeHansje (5/13/2009)
Interesting...Maybe I should take a serious look at your solution.
Tnx again.
For your future reference:
You never know untill you try! 😉
I had a situation a couple of weeks ago where...
May 13, 2009 at 6:54 am
if this is true
And for some value of my attributs ,it can be true in more than 1 case.
Then this cannot be the case
when i change the order of the...
May 13, 2009 at 6:50 am
Out of curiosity I just checked it on a 30 million row table
Result 1 - without a derived table
CpuMsLogRdsElapsed
80159430078641
Result 2 - with a derived table
CpuMsLogRdsElapsed
7766946009777
May 13, 2009 at 6:42 am
Run a few tests on it 🙂
Use this code from RBarryYoung as a test wrapper:
Set NoCount On
Declare @cpu_ int
Declare @lreads_ int
Declare @eMsec_ int
Select @cpu_ = cpu_time
, @lreads_ = logical_reads
,...
May 13, 2009 at 6:35 am
nothing wrong with the syntax of your case statement
One thing to note though, a Case Statement will stop as soon as it hits a condition which is true, so...
May 13, 2009 at 6:33 am
won't work like that
you can use
select * from
(
SELECT (firstname + ' ' + LastName) AS FullName) as derivedtable
WHERE derivedtable.FullName like '%Dalton%'
This works by returning a data set with the...
May 13, 2009 at 6:18 am
i'm not sure about why its getting that collation.
You can specify the collation of a column though
select MyColumn collate [collation name] as MyColumnAlias
from MyTable
The same thing works in joins
from TableA...
May 13, 2009 at 5:09 am
htilburgs (5/13/2009)
Ok... I've created the linked server.But when I've query both of my databases, I get the error:
The multi-part identifier "[am1-sqls03a\sqls03a].Topdesk.dbo.vestiging.debiteurennummer" could not be bound.
you need to alias it
select *...
May 13, 2009 at 4:58 am
I've got a Dell Precision 15" 2 years ago with:
2.2Ghz dual core intel processor
2GB Ram
250Gig hard drive
NVIDIA Quadro FX 370M 256MB - good enough to allow some gaming entertainment when...
May 13, 2009 at 4:10 am
The first isn't a valid time string
use this instead:
SELECT dateadd(hh, 2, CAST('1976-12-14T00:00:00' as datetime))
May 13, 2009 at 2:22 am
You can use Skype - they provide an API for windows development
You'll need some way of interfacing from your stored procedure to the Skype API, probably by way of an...
May 13, 2009 at 1:40 am
There are details from microsoft here[/url]
In a nutshell - you just need to install the updates to service pack 2
May 13, 2009 at 1:34 am
Viewing 15 posts - 181 through 195 (of 322 total)