Viewing 15 posts - 331 through 345 (of 1,065 total)
Yes, it can be used for commercial purposes... many well known products (e.g. Backup Exec) have used the free version of SQL Server for a long time.
October 29, 2009 at 1:55 am
ricky.chauvin (10/28/2009)
Thank god im young and healthy otherwise my blood pressure might be a...
October 28, 2009 at 7:24 am
You can take the database offline as follows:-
ALTER DATABASE [dbname] SET OFFLINE
October 28, 2009 at 7:06 am
Try something along these lines:-
create table test (err int)
go
insert test select 0
insert test select 0
insert test select 333
insert test select 212
insert test select 22
select sum(case err when 0 then...
October 28, 2009 at 5:05 am
Gail Shaw has written a fine article on this sort of query, which addresses just the sort of issues you are seeing.
http://sqlinthewild.co.za/index.php/2009/03/19/catch-all-queries/
October 28, 2009 at 3:53 am
I'd like return a constant value from storedProc/function which type isTinyInt
If it's a function, then you explicitly declare the return type anyway.
If it's a stored procedure, then you could always...
October 28, 2009 at 3:47 am
You don't have to do a full restore to revert things back to the way they were...
If you use the system stored procedures sp_change_primary_role and sp_change_secondary_role to switch the roles...
October 28, 2009 at 2:31 am
There's nothing different about moving tempdb in a cluster (other than making sure the same drive letter is mapped on all nodes).
Failing over will cause it to move, but.... you...
October 28, 2009 at 2:24 am
You will be getting NULL if any one of the columns you are concatenating is NULL.
If this is what you are trying to avoid, put SET CONCAT_NULL_YIELDS_NULL OFF before you...
October 23, 2009 at 7:47 am
Silverfox (10/23/2009)
Nice Link Ian, much appreciated. good reference to refresh my memory 😀
My pleasure, Mr Fox;-)
October 23, 2009 at 3:14 am
BOL is your friend... look here
http://technet.microsoft.com/en-us/library/ms191158(SQL.90).aspx
October 23, 2009 at 3:07 am
parthi-783546 (10/23/2009)
I am just trying to test which one would be better(Mirroring and/or Clustering) thats it.
They are 2 completely different things, which is why I asked what you were...
October 23, 2009 at 2:59 am
It is sad, that in this era, there is not good documentation for SQL Server
That is one thing I haven't heard Microsoft being accused of!!
Have you checked UPDLOCK in Books...
October 23, 2009 at 2:21 am
First a question... why is this urgent?
Second.. What are you trying to do... What makes you think Mirroring and/or Clustering are something you might want to use?
From your questions, I'm...
October 23, 2009 at 2:15 am
Have a look in SSMS at the Default Language for the Windows Login that is actually executing the BCP... I'd hazzard a guess that one of them is "English" and...
October 22, 2009 at 4:15 am
Viewing 15 posts - 331 through 345 (of 1,065 total)