Viewing 15 posts - 496 through 510 (of 1,292 total)
I haven't used SQL Server express in years now, but I am sure it should be available in all editions at the same location.
Look at the Management Node in the...
December 16, 2009 at 12:36 pm
Looked like a home work, any way here you go...
SELECT * FROM #statementmaster
WHERE Serial ! = 700 or
(Serial = 700 AND Narration = 1 )
December 16, 2009 at 11:41 am
krypto69 (12/16/2009)
Awesome thanks !
Welcome !
December 16, 2009 at 11:23 am
Lynn Pettis (12/16/2009)
December 16, 2009 at 11:23 am
NewBeeSQL (12/16/2009)
Thanks....how / where to set the permission?
Choose the Login, right click and select properties, go to Securables page and click Add, select you server, you should see a list...
December 16, 2009 at 11:20 am
NewBeeSQL (12/16/2009)
What kind of access should i have to execute DMVs?
Thanks
You need to have View Server State Permissions
December 16, 2009 at 11:04 am
Even if you have no 3rd part tool, you can find what's going on with the databases. You have Activity Monitor start there, look if you have any kind of...
December 16, 2009 at 10:55 am
Try this
DECLARE @SnapshotNameVarchar(100),
@SnapshotFileNameVarchar(100),
@BKUPSTMTVARCHAR(4000),
@PHYFILENAMEVarchar(200)
SET @SnapshotName = 'Rob_test_snapshot_'
SET @SnapshotName = @SnapshotName + CONVERT(VARCHAR(8), GETDATE(), 112) + '_1800'
SET @BKUPSTMT = 'CREATE DATABASE ' + @SnapshotName + char(13)+ char(10)...
December 16, 2009 at 10:50 am
What is your retention policy of those snapshots, do remember that there is a performance overhead on having database snapshots.
Also restoring from one of them will be possible only when...
December 16, 2009 at 9:38 am
Agree with Grant's opinion. Linked Servers tend to slow down the query. But it is the only way where you can connect 2 different SQL Servers across different machines.
Depending...
December 16, 2009 at 9:09 am
As Lynn suggested, you can compress the data on a Page level or Row level not on a MDF File level.
What I read in an article was having a page...
December 16, 2009 at 8:08 am
Shamsul (12/16/2009)
I did it but no luck..I am looking for a architecture diagram for sqlserver2005.
Let me ask you this, what is that you are trying to understand in SQL Server...
December 16, 2009 at 7:39 am
When you execute a package in BIDS, it executes under your security context, and runs fine (since you have enough permissions). But when schedules, it runs under the context of...
December 16, 2009 at 7:35 am
Viewing 15 posts - 496 through 510 (of 1,292 total)