Viewing 15 posts - 1,816 through 1,830 (of 5,394 total)
Change the properties in the model database, then create the 20 databases simply using the CREATE DATABASE statement.
Every new database is created from a copy of the model database.
Don't forget...
February 29, 2012 at 6:21 am
Definitely yes. Cursors are not as bad as they may seem, just make sure you're using them in the right way.
The one used in sp_MsForEachTable is declared GLOBAL, but...
February 29, 2012 at 3:16 am
Not trying to be picky, but sp_MsForEachTable uses a cursor internally.
February 29, 2012 at 3:02 am
GilaMonster (2/29/2012)
Gianluca Sartori (2/29/2012)
GilaMonster (2/29/2012)
Gianluca Sartori (2/29/2012)
SQL Server 2012 will be out in some days.
The marketing launch event is in a couple of days. Availability of the bits, probably not...
February 29, 2012 at 2:51 am
GilaMonster (2/29/2012)
Gianluca Sartori (2/29/2012)
SQL Server 2012 will be out in some days.The marketing launch event is in a couple of days. Availability of the bits, probably not so much.
End of...
February 29, 2012 at 2:05 am
Oh my!
This is hlarious! I had never noticed it before:
February 29, 2012 at 2:02 am
Koen Verbeeck (2/29/2012)
Gianluca Sartori (2/29/2012)
Saying "I told you so"...
February 29, 2012 at 1:52 am
SQL Server 2012 will be out in some days.
The latest version to date is SQL Server 2008 R2.
February 29, 2012 at 1:49 am
I suppose the values 3 and 4 should be associated with 'HOSTNAME3' rather than 'HOSTNAME2'.
This is how I would do it:
SELECT *
FROM Delivery AS DLV
WHERE EXISTS (
...
February 29, 2012 at 1:47 am
Koen Verbeeck (2/29/2012)
Gianluca Sartori (2/29/2012)
Revenant (2/28/2012)
Gianluca Sartori (2/28/2012)
Lynn Pettis (2/28/2012)
I guess we need to start encouraging more people to consider DBA work as a career choice.
What??? You mean less people!
What...
February 29, 2012 at 1:36 am
Tempdb probably blows because of excessive parallelism. I've seen this happening quite often.
This means you should review your indexes, because the optimizer most likely chooses to ignore some of those...
February 29, 2012 at 1:29 am
Revenant (2/28/2012)
Gianluca Sartori (2/28/2012)
Lynn Pettis (2/28/2012)
I guess we need to start encouraging more people to consider DBA work as a career choice.
What??? You mean less people!
What would I do for...
February 29, 2012 at 1:18 am
Moving logic in CLR or application won't protect the code, that can always be disassembled and reverse-engineered.
Personally, I would try to avoid the "security by obscurity" approach and I would...
February 28, 2012 at 11:32 am
Lynn Pettis (2/28/2012)
I guess we need to start encouraging more people to consider DBA work as a career choice.
What??? You mean less people!
What would I do for a living with...
February 28, 2012 at 11:10 am
ram_kamboz2k7 (2/28/2012)
if bigint is an issue, can nvarchar be used for the telephone number?Thanks
varchar would be a better choice. I highly doubt you will ever need to store unicode...
February 28, 2012 at 11:06 am
Viewing 15 posts - 1,816 through 1,830 (of 5,394 total)