Viewing 15 posts - 4,591 through 4,605 (of 13,469 total)
patel i see what you are asking, but i don't see the data reflecting something that allows it to beswitched like that;
about all i can suggest is a UNION and...
October 16, 2012 at 5:50 am
it's a little tough with denormalized data;
ideally you'll want to change the schema if you can to store dates in date columns, and notes in a seperate column; but we...
October 15, 2012 at 3:25 pm
where ISDATE(A) = 1
AND CONVERT(datetime,A) > DATEADD(dd,-7,Getdate()) --7 days? 8 days? what's minus one week for you?
--AND CONVERT(datetime,A) > DATEADD(ww,-1,Getdate()) --1 week?
October 15, 2012 at 2:51 pm
you might want to buy a copy of developer so you can restore and test teh client backup, even if they are using enterprise only stuff like compression;
October 15, 2012 at 2:01 pm
well it's a table of data now, so you can do your normal queries with group by and stuff like that.
here's a crappy group by example i just tested: like...
October 15, 2012 at 12:40 pm
it's fairly easy.
first, doa SELECT * FROM sys.traces; you'll probably see traceid = 1(the default trace) plus any other traces you have created (2,3,4 etc)
select the trace id of...
October 15, 2012 at 12:11 pm
i think a simple test with an EXISTS and correlated subquery will get you want you want:
With YOURTABLE (TICKET,STATUS)
AS
(
SELECT 9543,1 UNION ALL
SELECT 9543,5 UNION ALL
SELECT 9543,5 UNION...
October 15, 2012 at 11:47 am
i think it might be easier to jsut change the default paths for the files and backups, wouldn't it?
I did basically what you are saying to another server recently;
added a...
October 15, 2012 at 11:32 am
ok here's one solution:
ALTER FUNCTION dbo.fn_parsename
(
@pString VARCHAR(7999),
...
October 15, 2012 at 10:06 am
ron there's a built in extended procedure that can tell you what Ad groups an AD login belongs to.
the problem is, you do NOT want to grant everyone access to...
October 15, 2012 at 9:57 am
let us know if we can help with the additional issues you are encountering; glad i could get you pointed in a helpful direction.
October 15, 2012 at 7:37 am
additinally, since you've deployed it on one server already, you can actually script them out as a binary blob and install them via a script...the script may load slow as...
October 15, 2012 at 6:09 am
sounds like an end user comment...it's not an actual error message.
I would guess that someone could not connect or was blocked, and stated that the server must be down, which...
October 12, 2012 at 11:38 am
i tried to duplicate this, and couldn't drop any unqiue constraints because of the foreign keys.
is it possible that the database was originally a SQL 2000 database?
in that case, becasue...
October 12, 2012 at 9:29 am
Jeff Moden (10/11/2012)
October 12, 2012 at 8:56 am
Viewing 15 posts - 4,591 through 4,605 (of 13,469 total)