Viewing 15 posts - 76 through 90 (of 443 total)
hydbadrose (9/20/2011)
(A. Develop Protect-Prep Comm), (1.1.A ) and you are saying...
September 20, 2011 at 9:18 am
It depends on your business requirements, not on what someone else might think based on a very, very small data sample.
They all look like strings so a varchar would be...
September 20, 2011 at 8:56 am
saidapurs (9/18/2011)
Hi,In our server i don't have rights to use third party tool, could you help me through Application how do take backup....
Use the Windows...
September 19, 2011 at 4:19 am
You don't need all those NULLs, just:
EXEC msdb.dbo.sp_get_composite_job_info @execution_status=1
September 15, 2011 at 7:51 am
Ninja's_RGR'us (9/14/2011)
It was about time :-D.
Second that!
September 14, 2011 at 2:28 am
I would guess you're talking about Reporting Services, Yes?
And you want to be able to click on one of the rows in your report which then opens the appropriate report?
September 8, 2011 at 10:00 am
Michael Earl-395764 (11/18/2008)
Is it me, or are the posted questions getting worse these days?
Yes, see http://www.sqlservercentral.com/Forums/Topic1171862-391-1.aspx
September 8, 2011 at 9:37 am
Sorry, don't understand your question, you're going to have to explain in more detail what you're trying to do.
September 8, 2011 at 9:34 am
You can't use a variable as the table name in a SELECT statement, you will need to use dynamic SQL.
Start here Dynamic SQL
September 8, 2011 at 9:19 am
Beware when using the BETWEEN operator, it is inclusive of the values of the two expressions.
From MSDN:
BETWEEN returns TRUE if the value of test_expression is greater than or equal to...
September 8, 2011 at 2:44 am
amitchaudhury (8/26/2011)
can you please past some sample code that i can follow ? i am not an SQL expert like you guys 🙂
Try this:
DECLARE @sql VARCHAR(MAX)
August 26, 2011 at 9:03 am
John Mitchell-245523 (8/26/2011)
Or use one of the INFORMATION_SCHEMA views and avoid the need to join at all:John
Nice one John
August 26, 2011 at 7:47 am
Something like this:
SELECT DISTINCT
o.name
FROM
sys.columns c
JOIN
sys.objects o ON c.object_id = o.object_id
WHERE
c.name = 'ItemInsertedWhen'
AND
o.name LIKE 'CMS_%'
AND
o.type = 'U'
August 26, 2011 at 7:17 am
Viewing 15 posts - 76 through 90 (of 443 total)