Viewing 15 posts - 166 through 180 (of 518 total)
The only issue you _might_ run into is datetime format differences...the brits do things all bass ackwards. That can be resolved by using SET DATEFORMAT, if needed..but it might not...
October 8, 2010 at 1:18 pm
Twinsoft SME (10/8/2010)
October 8, 2010 at 12:27 pm
Ignore the memory shown in task manager for the SQL server process. It's not accurate.
October 8, 2010 at 12:23 pm
Index scans just mean the index was used with no criteria, or the criteria was broad enough that a scan was a better operation. If there was a better index...
October 8, 2010 at 12:21 pm
Every company I've been at has an upgrade license where we were licensed for SQL Server, period..regardless of version. We could upgrade from 2005 to 2008R2 at no extra cost.
Have...
October 8, 2010 at 11:55 am
Well..there's a few things going on here. They're correct on a few points...and incorrect on quite a few.
First and foremost, if they decided against taking txn log backups, then Simple...
October 8, 2010 at 11:51 am
Mine modified to Update instead:
DECLARE @data TABLE (
A varchar(50),
B varchar(50),
C varchar(50)
)
INSERT INTO @data
SELECT 'CUTS833','S/S Pocket Tee Red Text Royal Fish White','Edge' UNION ALL
SELECT 'CUTS833_S','S/S Pocket Tee Red Text Royal Fish...
October 7, 2010 at 12:59 pm
Can you post DDL/sample data of the Event Notice table?
October 7, 2010 at 12:46 pm
Something like this?
DECLARE @data TABLE (
A varchar(50),
B varchar(50),
C varchar(50)
)
INSERT INTO @data
SELECT 'CUTS833','S/S Pocket Tee Red Text Royal Fish White','Edge' UNION ALL
SELECT 'CUTS833_S','S/S Pocket Tee Red Text Royal Fish White','Edge' UNION...
October 7, 2010 at 12:35 pm
Are all of your column a values 7 characters, plus _, plus size?
October 7, 2010 at 12:21 pm
You have a file with many tables and non-uniform delimiters and no target schema generated yet?
There is no graceful way to handle that.
October 7, 2010 at 12:11 pm
Can you please clarify a bit and give sample data with 1 or 2 rows of expected output? You left out a column letter, interchanging LG/Large..we would need some better...
October 7, 2010 at 12:09 pm
You cannot ever remove the primary log or data file from a database.
Your best bet is to remove the secondary log file, and then move the primary to the correct...
October 7, 2010 at 12:06 pm
Check the SQL Server log. This sounds like an issue with encryption.
October 7, 2010 at 10:28 am
AndrewSQLDBA (10/7/2010)
Is this done by a calculation?
Andrew...
October 7, 2010 at 10:26 am
Viewing 15 posts - 166 through 180 (of 518 total)