Viewing 15 posts - 1,291 through 1,305 (of 1,923 total)
Arun Jebakumar (7/30/2010)
July 30, 2010 at 7:21 am
To add to it, the default setting of your PROD DB should have the Right Click on DB - Properties - Options - Miscellanous - ANSI NULL default - ...
July 30, 2010 at 6:42 am
meichner (7/30/2010)
USE [DGIS_PRODUCTION]
GO
/****** Object: View [dbo].[RequestForQuote_View] Script Date: 07/30/2010 08:18:12 ******/
meichner, this looks like you used the Right Click --> Script View As --> CREATE To...
July 30, 2010 at 6:38 am
July 30, 2010 at 6:31 am
try this:
select serverproperty('Edition')
Also dig deep into SERVERPROPERTY function; you can find lots of information about the servers using that function..
Hope this helps..
July 30, 2010 at 6:30 am
Try this:
declare @tab table
(
ccode varchar(2),
ctype varchar(2)
)
insert into @tab
select 'A', 'L'
union all select 'A' , 'P'
union all select 'B'...
July 30, 2010 at 3:44 am
Anyways, take this:
DECLARE @StartDate DATETIME
DECLARE @EndDate DATETIME
DECLARE @NumOfDays INT
SET @StartDate = '01-JUL-2010 00:00:00.000'
SET @EndDate = '31-JUL-2010 00:00:00.000'
SET @NumOfDays = DATEDIFF(DD,@StartDate , @EndDate) + 1 ;
WITH Tens AS
(
SELECT 1...
July 30, 2010 at 1:17 am
Quite Possible... But would want to know if this is some kind of Home-work, is it?
If yes, then can u please update us with what you have tried till now?...
July 30, 2010 at 12:56 am
Yes ,Brian, right.. but there are better solutions to get teh latest ProjectID.. if you would provide us some sample data, your table structure, then we would happily solve your...
July 27, 2010 at 10:40 am
Try this buddy!
INSERT INTO [BE].[dbo].[Resources]
([ResourceID]
,[ProjectID]
...
July 27, 2010 at 7:35 am
This will give u a load of replies for difference between x64 and IA64... basically those are Architestures....
Check out this URL : http://tinyurl.com/246n2qj
July 27, 2010 at 5:47 am
Try this:
-- setup test data
declare @Application table (appid int, appname varchar(30), [version] int, appCount int)
insert @Application
select 1, 'Excel',200, 3 union all
select 2,...
July 26, 2010 at 5:52 am
Can u attach a screen shot of your "Results Pane" alone with your current result set? I am stil unclear on your request. Just a shot in the dark, are...
July 26, 2010 at 5:31 am
Dint this work for you?
Select instancename,verifiedname from table where instancename is not null and verifiedname is not null
As it seems as simple, i guess i am missing something.. if...
July 26, 2010 at 5:22 am
My pleasure, Raffael! 🙂
July 26, 2010 at 5:20 am
Viewing 15 posts - 1,291 through 1,305 (of 1,923 total)