Viewing 15 posts - 151 through 165 (of 180 total)
Uwe Ricken (5/24/2013)
I'VE GOT IT!!!!!
A few minutes ago i got the mail from Bob - passed...
OMG - can't describe what I feel currently...
What a journey - it took me...
May 29, 2013 at 10:47 am
ben.brugman (5/29/2013)
Evgeny (5/29/2013)
You can start from:select * into dbo.newtable
from dbo.oldtable
if you need new table to be populated with old table data, then you can add required constraints and indexes.
I...
May 29, 2013 at 10:37 am
You can start from:
select * into dbo.newtable
from dbo.oldtable
if you need new table to be populated with old table data, then you can add required constraints and indexes.
May 29, 2013 at 7:47 am
Author should emphasize that it will be one batch. It will be too many wrong answers.
May 5, 2013 at 10:58 pm
Also, be aware that some indexes exists for maintain constraints - unique indexes. And it could looks like unused...
April 8, 2013 at 7:02 am
Here is detail instructions: http://msdn.microsoft.com/en-us/library/ms345408.aspx .
Why you restarted server, I usually use that script for model:
SELECT name, physical_name AS CurrentLocation, state_desc
FROM sys.master_files
WHERE database_id = DB_ID(N'model');
ALTER DATABASE model SET...
April 8, 2013 at 6:58 am
Start sql server in minimal configuration and check paths using this script:
SELECT name, physical_name AS CurrentLocation, state_desc
FROM sys.master_files
WHERE database_id = DB_ID(N'model');
April 8, 2013 at 6:51 am
I just want to work in the US. I thought that the US is welcome for immigrants, because it is immigrants country. But now I starting understand that it is...
April 4, 2013 at 11:34 pm
barsuk (4/3/2013)
Where are you located? Moscow?
St. Petersburg. May be you could recommend some staff agencies?
April 3, 2013 at 10:55 pm
barsuk (4/2/2013)
Do you have a job offer or you are waiting for a job offer?
I am looking for a job offer. I just created resume on monster.com and applied for...
April 2, 2013 at 10:47 pm
Correction, Principal do not wait for commit transaction on the mirror. It waits for transaction being recorded in transaction log file on the mirror server. This is common misconception.
March 26, 2013 at 11:25 pm
Right answer is wrong in this case. Beacause some rows could be returned. This query will prove my words:
while 1=1
begin
CREATE TABLE #TEST
(
FirstDate DATETIME,
LastDate DATETIME2
)
DECLARE @i int
SET @i...
March 12, 2013 at 12:03 am
It can vary... You should trust only to official information http://www.microsoft.com/learning/en/us/exam.aspx?ID=70-461 .
January 23, 2013 at 11:40 pm
Vedran Kesegic (12/10/2012)
4 videos watched, 1000 to go 🙂
I hope to be...
December 10, 2012 at 10:27 pm
Do not forget that you must successfully pass 88-970, after that you will be able to registry for 88-971.
Good luck.
November 7, 2012 at 11:05 pm
Viewing 15 posts - 151 through 165 (of 180 total)