Viewing 15 posts - 4,606 through 4,620 (of 13,469 total)
here's a CTE of your data that is inte ready-to-use format my friend Cadavre suggested:
WITH myCTE ([Branch],[Year],[Count of All who failed],[Count of all right handed who failed])
AS
...
October 12, 2012 at 8:11 am
how much memory does your developer machine have?
I find VS2010 is very resource intensive; a single isntance devenv.exe is currently 1.4 gig or ram for a big project, and two...
October 12, 2012 at 7:54 am
well, ideally, your scalar UDF can be converted to an inline table funciton instead.
Create FUNCTION fnAdjustDateTime_itv (@date datetime, @timezone int)
RETURNS table
AS
RETURN
SELECT DateAdd(hh,CASE
...
October 12, 2012 at 7:37 am
bulk insert expects raw data, and not formatted INSERT...statements.
if your file looked like this isntead:
1,Apr 27 2012 12:00AM
2,Apr 27 2012 12:00AM
bulk insert would insert into a two column table witht...
October 12, 2012 at 7:23 am
Monitoring can be a wide subject, sicne there is a lot of different things you might want to review.
redgate, the website sponsor/owner, provides some free reports you can add to...
October 12, 2012 at 5:30 am
probably what you are asking, is, if you have multiple email accounts, how do i change which one is used for the default email profiles?
IN SQL Server Management Studio, int...
October 11, 2012 at 2:27 pm
well, it's possible... you can do it with a wHILE loop, i guess.
something like this seems to be what you are asking for, maybe?
DECLARE @rowcount int
SET @rowcount = 1
WHILE @rowcount...
October 11, 2012 at 2:18 pm
have you looked into SSRS Data Driven Subscriptions, I'm pretty sure that's exactly what you are after, so that there is no user interaction required to create teh reports...so you...
October 11, 2012 at 1:53 pm
tripri (10/11/2012)
So from that i'm looking for some record 'abc dfgr hjk kishg lZDjsdf...
October 11, 2012 at 12:21 pm
ok SELECT OBJECT_NAME(437576597) will tell you the table that is having the problem.
since it says index(0) and index(2) on that object, we know the table is a Heap, and...
October 11, 2012 at 10:26 am
run this command in SSMS, and post the entire results back here.
the database in question is VertexProd, right?
DBCC CHECKDB('VertexProd') WITH NO_INFOMSGS, ALL_ERRORMSGS
October 11, 2012 at 10:11 am
yeah the second half of the issue is tough; you can stick the descriptive data in a relationsship witht eh columns/tables, etc with extended properties(sys.sp_addextendedproperty and fn_listextendedproperty), but that also...
October 11, 2012 at 9:17 am
if the OP can identify how he knows the "same record" already exists, it would be something like this
CREATE trigger Del_records on Active_Table
AFTER insert
as
delete from Active_Table a
INNER JOIN...
October 11, 2012 at 9:04 am
I had to do that a lot previously.
keep the table you import into, but create a view with column names that better describe the purpose of the columns;
even better, the...
October 11, 2012 at 8:54 am
this thread has a very similar issue:
too strong of permissiosn were granted, but the DENY command doesn't have the level of granularity to take away things like ALTER TABLE
this example...
October 11, 2012 at 8:40 am
Viewing 15 posts - 4,606 through 4,620 (of 13,469 total)