Viewing 15 posts - 3,451 through 3,465 (of 6,397 total)
Use the binary hex as the clause for the job_id
SELECT * FROM msdb.dbo.sysjobs where job_id = 0xD498185D4A27E947ABE673A5CD93B09B
November 7, 2012 at 8:34 am
Now we fall into the troubleshooting steps of why it cannot connect.
Server up and running?
Correct server name listed in the -S switch?
Can connect via SSMS to the server?
Server set to...
November 7, 2012 at 8:24 am
what error do you get?
November 7, 2012 at 8:15 am
Can register from the Prometric site, there are two options for MCM when I log in selecting the UK as my country,
Microsoft Certified Master Programs (088)
Microsoft Certified Master Program...
November 7, 2012 at 7:32 am
Setup a windows scheduled task which executes a batch file that contains the nessesary SQLCMD switches and pass in the command in a SQL file via the -i switch.
November 7, 2012 at 7:30 am
You need to select it from the lab section of the MCM its not in the theory list.
November 7, 2012 at 7:02 am
I would seriously recommend getting them to unblock the site then as there is just to much information on that site to copy and paste into the forum
November 7, 2012 at 6:24 am
Would have to do something like the following due to the way that CHAR stuffs the white space with a space
declare @i char(8) = '1'
select right('0000000'+REPLACE(@i,' ',''),8)
November 7, 2012 at 6:18 am
Use Ola's index maintenance scripts, give you a lot more control than the standard MP's do.
Link can be found in my signature.
November 7, 2012 at 6:12 am
Then I suggest you build a table which houses all the different probabilities
November 7, 2012 at 4:25 am
You need to do a condition where Date >= FromDate and Date <= ToDate
DECLARE @Table TABLE (FromDate DATETIME, ToDate DATETIME, ResultDate DATETIME)
INSERT INTO @Table VALUES
('2012-01-01','2012-03-31','2011-12-31'),
('2012-04-01','2012-06-30','2012-03-31'),
('2012-07-01','2012-09-30','2012-06-30'),
('2012-10-01','2012-12-31','2012-09-30')
SELECT
ResultDate
FROM
@Table
WHERE
GETDATE() >= FromDate
AND
GETDATE() <= ToDate
November 7, 2012 at 3:44 am
Please can you follow the second link in my signature on posting code and data so that we can help you with a query.
November 7, 2012 at 1:52 am
The alias needs to be created on the clients.
November 7, 2012 at 1:48 am
Please do not cross post, replies here please http://www.sqlservercentral.com/Forums/Topic1381095-17-1.aspx
November 6, 2012 at 5:21 am
Check out the Microsoft learning pages for the exams, they have the official recommended training materials advertised for each exam which do not infringe on the NDA.
November 6, 2012 at 5:11 am
Viewing 15 posts - 3,451 through 3,465 (of 6,397 total)