Viewing 15 posts - 7,636 through 7,650 (of 26,490 total)
Eugene Elutin (5/14/2013)
William Gary Wright (5/14/2013)
May 14, 2013 at 7:16 am
William Gary Wright (5/14/2013)
May 14, 2013 at 7:12 am
EdVassie (5/14/2013)
This checks statistics so that only those indexes that need rebuilding get processed. This can...
May 14, 2013 at 6:40 am
Just remember that differential backups do not allow for point in time recovery, they only allow you to recover to that specific point in time that they were taken. ...
May 14, 2013 at 6:37 am
Does this give you what you are looking for?
Select
*
from
streets s
inner join streetranges sr
...
May 13, 2013 at 3:24 pm
sqlguy-736318 (5/13/2013)
Thanks Gail!When you say "Maybe", in what scenarios "Yes" and in what scenarios "No"?
Have you read the articles she provided the links to below her answer? Those will...
May 13, 2013 at 2:27 pm
JC-3113 (5/13/2013)
thanks for your input.
here is a followup then
should i be rebuilding my indexes before the full backup then ?
i thought i had read somewhere to do a full...
May 13, 2013 at 10:32 am
Eugene Elutin (5/13/2013)
michael.higgins (5/13/2013)
SELECT DISTINCT o.name, o.type_desc, p.name, p.type_descFROM sys.sql_dependencies d
INNER JOIN sys.objects o
ON d.object_id = o.object_id
INNER JOIN sys.objects p
ON d.referenced_major_id =...
May 13, 2013 at 8:54 am
Also, could you mock-up some sample data and provide a destination for the data? Could help figure out how to approach the problem.
May 13, 2013 at 7:57 am
tshad (5/12/2013)
A CTE only exists for the duration of the query with which is defined. You can't assign a value in...
May 13, 2013 at 12:06 am
This doesn't work either:
declare @TestVar int;
select
Mycol1,
@TestVar = MyCol2
from
dbo.MyTable
If you took my comment as to the visibility of the...
May 12, 2013 at 8:09 pm
Which comes back to what are you trying to accomplish?
What problem are you trying to solve?
May 12, 2013 at 4:51 pm
No, it can't.
A CTE only exists for the duration of the query with which is defined. You can't assign a value in a CTE to a variable for the...
May 12, 2013 at 4:48 pm
mister.magoo (5/12/2013)
I can't see why this is in the results?select 79673, 49202
Can you explain?
I am too. Only thing I can come up with is indirect relationships. Makes it...
May 12, 2013 at 4:04 pm
tshad (5/12/2013)
I know how to do it outside.
I am not really interested in how to get the monthly list....
May 12, 2013 at 3:55 pm
Viewing 15 posts - 7,636 through 7,650 (of 26,490 total)