Viewing 15 posts - 1 through 15 (of 345 total)
Probably a xp_readerrorlog is stuck and it is waiting for that to return.
You can have a look on the server for any tasks that look like they might be associated...
December 14, 2012 at 7:05 am
There is a fault in the ssis package and it won't run.
It should give you error messages about the build.
Which version are you usoing?
December 14, 2012 at 7:02 am
update tbl
set u = case when val1 = '.' or val2 = '.' or val3 = '.' then 'U' else 'u' end
December 14, 2012 at 6:59 am
Getting away from the original question but:
I don't think there is anything wrong with implementing something that goes against theory (as in database engines or most databases) as long as...
December 13, 2012 at 9:42 am
I started with set/group theory and topology (part of a maths degree).
Then a relational databases course which was about the theory and included a lot of sql and relational theory...
December 13, 2012 at 7:34 am
December 13, 2012 at 3:51 am
A restore is the simplest - but there may well be a script you need to run after the restore (see below).
As to the datatransfer packages - what do you...
December 13, 2012 at 3:48 am
See
http://www.simple-talk.com/sql/database-administration/partitioned-tables-in-sql-server-2005/
If you look down it has a section on adding and removing partitions - was written for v2005 but is still applicable.
December 12, 2012 at 10:20 am
Oops - didn't think row_number() was available in v2005.
Still seems new.
December 12, 2012 at 9:39 am
option (maxrecursion 0);
Will keep going.
December 12, 2012 at 6:29 am
create table #TEMP (slno int, received int, BALANCE int, paid int)
;WITH CTE_BALANCE(SLNO,RECEIVED,PAID,BALANCE)
AS
(
SELECT slno,received,paid,CAST(ISNULL(BALANCE,0) AS NVARCHAR(64))
FROM #TEMP WHERE SLNO=1
UNION ALL
SELECT t1.slno,t1.received,t1.paid,CAST((ISNULL(T1.RECEIVED,0) - ISNULL(T1.PAID,0)) + ISNULL(T2.BALANCE,0) AS NVARCHAR(64)) BALANCE
FROM...
December 12, 2012 at 5:54 am
I would look at why you think you need more than 1024 columns in a report.
December 12, 2012 at 5:09 am
Could probably be simpler but this separates out the steps.
declare @t table (s varchar(10), dt datetime)
insert @t select 'A', '20120101'
insert @t select 'A', '20120102'
insert @t select 'A', '20120102 01:00'
insert @t...
December 12, 2012 at 4:43 am
Viewing 15 posts - 1 through 15 (of 345 total)