Viewing 15 posts - 6,226 through 6,240 (of 8,753 total)
Jeff Moden (1/23/2015)
DECLARE @PassedInDate DATETIME;
SELECT @PassedInDate = '15 OCT 2014'
;
SELECT Wk# = ROW_NUMBER() OVER (ORDER BY wk.MondayDate), wk.MondayDate
FROM...
January 28, 2015 at 12:56 am
Quick thought, is TCP/IP enabled?
😎
January 26, 2015 at 9:59 pm
Quick thought, the problem doesn't require a complex table structure, something like this should do
😎
+----------+ ...
January 25, 2015 at 7:38 am
Quick thought, seen this behaviour occasionally on SQL Server 2008, caused by an implicit cast or at least adding the N'' has fixed the problem.
😎
Try changing
convert(xml,'<xml><![CDATA[' + cast(TABLE.COLUMN...
January 25, 2015 at 5:21 am
GilaMonster (1/23/2015)
create table [where]
([where] char(5),
[from [where] varchar(25),
[select [where from [where] varCHAR(50),
)
go
insert into [where] values ('from where', '[from [where]]', 'select...
January 23, 2015 at 10:06 am
Quick question, can you post the DDL and some sample data as an insert statement, makes it easier to help?
😎
January 22, 2015 at 12:24 pm
pkapas (1/22/2015)
January 22, 2015 at 9:08 am
Brandie Tarvin (1/21/2015)
Can I scream yet?
I just got the "white paper" for a new project. 46 freaking pages of "time to integrate the systems". Which isn't bad. I support the...
January 21, 2015 at 4:02 pm
That's probably the best way around the problem, schedule the job for off-hours/maintenance window execution when no users are affected.
😎
January 21, 2015 at 3:51 pm
denis.gendera (1/21/2015)
I'm using SQL Function and doing the...
January 21, 2015 at 3:45 pm
Quick thought, one can query the xml for both element/attribute names and values, if you have some sample XML then I'll chip in a query for this.
😎
January 21, 2015 at 3:37 pm
Thordog (1/21/2015)
WITH (DATA_COMPRESSION = PAGE)
The table is 110 GB, so will take time to compress. But it is one table in a database...
January 21, 2015 at 3:29 pm
Stephanie Giovannini (1/21/2015)
January 21, 2015 at 2:53 pm
dopydb (1/21/2015)
Yea only 100 or so inserts a day, otherwise i wouldnt use a trigger at allAny tips for making it more efficient? 🙂 always interested in other approaches
Post the...
January 21, 2015 at 2:45 pm
Viewing 15 posts - 6,226 through 6,240 (of 8,753 total)