Viewing 15 posts - 11,266 through 11,280 (of 26,486 total)
deep_kkumar (6/18/2012)
June 18, 2012 at 11:51 am
Grant Fritchey (6/18/2012)
Lynn Pettis (6/18/2012)
Grant Fritchey (6/18/2012)
Lynn Pettis (6/18/2012)
Have to ask first, why are you trying to attach the mdf file without its associated ldf file?
That's how you get the...
June 18, 2012 at 11:44 am
Why are you trying to automate shrinking your log files? They are just going to have to grow again depending on database activity which will impact system performance.
June 18, 2012 at 11:35 am
Certifications are not worthless. The problem is actually that some people are able to get the certifications even though they can't do the tasks required. I worked with...
June 18, 2012 at 11:31 am
How many users can potentially access your database(s) on the server?
June 18, 2012 at 11:24 am
Grant Fritchey (6/18/2012)
Lynn Pettis (6/18/2012)
Have to ask first, why are you trying to attach the mdf file without its associated ldf file?
That's how you get the 2012 OLTP AdventureWorks2012 sample...
June 18, 2012 at 11:23 am
Caruncles (6/18/2012)
I'm troubleshooting a stored proc and came across this syntax:
AND...
June 18, 2012 at 9:39 am
Have to ask first, why are you trying to attach the mdf file without its associated ldf file?
June 18, 2012 at 9:35 am
kharol (6/18/2012)
This is inline table valued function. It looks pretty much like this:
CREATE FUNCTION [dbo].[SomeTVF]
( @param1 varchar(50)
, @param2 datetime
, @param3 datetime
) RETURNS TABLE AS
RETURN
(
WITH cte as
(
..
)
SELECT cols
FROM dbo.SomeTVF2(@param1, @param2)...
June 18, 2012 at 9:26 am
Olalekan Adewale (6/18/2012)
DECLARE @team table (emp_code int,old_emp_code int, emp_name varchar(20))
insert into @team (emp_code,old_emp_code, emp_name)
select 1, 100,'ABA' UNION ALL
select 2, 200,'ABB' UNION ALL
select 3, 300,'ABC' UNION ALL
select 4, 400,'ABD' UNION...
June 18, 2012 at 9:06 am
Olalekan Adewale (6/18/2012)
The question is how can I achieve the expected/desired result with tsql using the 2 table structures I specified.Thanks Boss
Now, show us what you have done in an...
June 18, 2012 at 8:58 am
john.walker 46407 (6/18/2012)
June 18, 2012 at 8:49 am
I'd be curious what is actually in the two columns. When I setup two variables as floats and enter the values you provide I get the answer you are...
June 18, 2012 at 8:48 am
Viewing 15 posts - 11,266 through 11,280 (of 26,486 total)