Viewing 15 posts - 5,521 through 5,535 (of 6,395 total)
well looking at the cast/convert MSDN page
http://msdn.microsoft.com/en-us/library/ms187928.aspx
it details that ntext to binary convertions are not allowed, you will need to convert to varchar or nvarchar
March 19, 2012 at 2:50 am
unsure on that, what I would ask you do is post the query in question, along with data DDL and the rdl file, and detail what the results should look...
March 19, 2012 at 2:40 am
take a look at the key word UNION and UNION ALL, it will allow you to specify an additional query which you can create a blank row with a dummy...
March 19, 2012 at 2:38 am
please can you post the DDL for the table and some sample data with the results you expect to see and what you do actually see so we can take...
March 19, 2012 at 2:34 am
no it wont as your not affecting the transaction log
March 19, 2012 at 2:32 am
how are you licensing the servers? CPU lics or Server&CAL lics?
if CPU then you only need to purchase the amount of Enterprise licences which match the number of CPUs,...
March 19, 2012 at 2:30 am
the only way to backup the secondary would be to restore it with recovery so that it comes online for you to back it up. this will terminate the...
March 19, 2012 at 2:25 am
i've done this in the past when consolidating hardware, there are no issues with it as the binary files are installed in different folders, the only limitation we had was...
March 19, 2012 at 2:05 am
SQLRNNR (3/16/2012)
Lynn Pettis (3/16/2012)
anthony.green (3/16/2012)
now your just being cruel :crying:Yes, yes I was. But I love Chocolate Mousse!
truffle
truffle shuffle
March 16, 2012 at 11:33 am
think we need to change the word now, as all this talk about fish and tartar sauce is making me want fish and chips for my evening meal, which will...
March 16, 2012 at 9:48 am
this will do the trick
select custname, region, upper(left(amount,3)), amount1
from
(
select
custname, region, janamount, febamount, maramount, apramount, mayamount, junamount, julamount, augamount, sepamount, octamount, novamount, decamount
from #test) t
UNPIVOT
(amount1 for amount in (janamount, febamount, maramount,...
March 16, 2012 at 9:36 am
1st error, lookup requires 4 parameters, if you used my above expression it only passes in 3.
2nd error, you have a extra function like MIN/MAX/AVG/SUM etc somewhere else which is...
March 16, 2012 at 9:28 am
please post the table definition and a couple of sample data rows
March 16, 2012 at 9:07 am
Viewing 15 posts - 5,521 through 5,535 (of 6,395 total)