Viewing 15 posts - 181 through 195 (of 223 total)
To change the default language of a login, you can use sp_defaultlanguage or
ALTER LOGIN sa WITH DEFAULT_LANGUAGE = British;
GO
June 24, 2009 at 4:50 am
You will need the alter permission on the Table on which your trigger is defined.
Please refer this:
June 24, 2009 at 4:29 am
I don't think you can change the Server language (May be the experts here can share more light on this).You can change it for individual logins.
June 24, 2009 at 4:11 am
PLease provide us with some sample data..
Thanks.
June 24, 2009 at 3:55 am
EXEC sp_configure 'default language', 23
RECONFIGURE
You can then check:
SELECT @@language, @@langid
June 24, 2009 at 3:53 am
If your database is in full mode, u do not need to change it back to simple. You could just do this
Run a CHECKPOINT
Back up the database
BACKUP LOG with...
June 23, 2009 at 8:48 am
Do u think that getting a certification is more important than the Job experience..
June 23, 2009 at 1:37 am
Thank you Gail i'll keep that in mind. Thank you for ur valuable suggestion
June 22, 2009 at 3:20 pm
Thanks Gail
I'll read up more on this and do some tests on our test server before using it in live systems.
June 22, 2009 at 2:20 pm
for e.g in the below query what does the merge join do? How does it optimise the query/join? What if there are three or four different joins; what will merge...
June 22, 2009 at 11:01 am
select datepart(month,@date),sum(Noofstudents)
from temp1
group by datepart(month,@date)
June 22, 2009 at 6:50 am
Yes this will work as well;
select COALESCE (currencyold,currencynew) as currency
from tablename
I thought SQL_PRODIGY wanted a case statement but this is better.
Nice one Laura.
June 22, 2009 at 6:12 am
Correction:::
select currency=
case when currencyold is null then currencynew
when currencynew is null then currencyold
end,
balance=
case when balanceold is null then balancenew
when balancenew is null then balanceold
end,
publicidentifier
from tablename
June 22, 2009 at 5:48 am
select currency=
case when currencyold is null then currencynew
when currencynew is null then currencyold
end,
balance=
case when balanceold is null then balancenew
when currencynew is null then...
June 22, 2009 at 5:46 am
You can usee the following script which will reorganise or reindex the tables accordingly. You can create a job using this or use the maintenance plan.
-- Ensure a USE ...
June 22, 2009 at 4:55 am
Viewing 15 posts - 181 through 195 (of 223 total)