Viewing 15 posts - 16 through 30 (of 190 total)
forsqlserver (4/9/2012)
So How should I Stop/Start the replication.
Should I stop the sql server...
April 9, 2012 at 2:59 pm
It has some reason that log file grows to that size.
If I were you, I would like to know why the log file grows that big, and then take action...
April 6, 2012 at 3:08 pm
if you can get rid of cursor, it would be better. (Seems the logic is not complicated in the cursor.)
April 5, 2012 at 3:19 pm
Looks like you used "Be made using the login's current security context".
For that, you need to create a SPN on AD.
The SQL service on your local PC does not...
April 5, 2012 at 3:00 pm
Do not need the table variable.
Just use two output parameters. And, you are done.;-)
April 3, 2012 at 1:34 pm
sqlzealot-81 (3/29/2012)
March 29, 2012 at 11:43 pm
Question 11 .No of Employees Joined in each year, output of this query should be “Year”, “No Of Employees Joined”
select year(dateadd(M,-3,JoinDate)),COUNT(*) as [No of Employees Joined],eid
...
March 29, 2012 at 11:24 pm
Question 7. What is the Average Salary of employees in “Arts” Department?
select AVG(salarypermonth) from
...
March 29, 2012 at 11:19 pm
NO. For express edition, only replication comes with it.
March 21, 2012 at 2:26 pm
The management studio is not with it. You have to install separately. :ermm:
March 21, 2012 at 1:43 pm
Try this:
SELECTLAST_NAME,
FIRST_NAME,
[ADDRESS] = (SELECT STUFF((SELECT ' ' + ADDRESS_LINES
FROM yourTable
WHERE ID = a.ID
ORDER BY POS
FOR XML PATH('')
...
March 21, 2012 at 1:35 pm
Hakuna Matata (2/22/2012)
Try this :
WHERE CONVERT(DATE,FM.Openeddate)=CONVERT(DATE,GETDATE())
I don't recommend to use this
February 22, 2012 at 2:25 pm
Paul Randal has an article for Replication as HA:
http://www.sqlskills.com/BLOGS/PAUL/category/Replication.aspx
January 26, 2012 at 2:58 pm
Viewing 15 posts - 16 through 30 (of 190 total)