Viewing 15 posts - 16 through 30 (of 47 total)
In my experience Excel tries to be 'clever' with formatting and presentation.
If it 'recognises' something then it will pre-format.
Usually it gets it right, but sometimes it can mess up your...
April 29, 2011 at 1:44 am
The two systems are similar but as you have found not equal 🙂
If you have managed to get a full output of the DDL for the database and code then...
April 28, 2011 at 6:27 am
Yes one could delete a big lump at a time, both methods are valid.
Sometimes, simply due to size of data (original post mentions 300m rows) it is more sympathetic to...
April 28, 2011 at 6:21 am
Looking at ISNUMERIC()
SELECT ISNUMERIC('1.')
Returns True (or 1)
However
SELECT CAST('1.' AS INT)
Won't cast to an integer
April 28, 2011 at 6:17 am
Try
SELECT /*TOP 99 PERCENT*/ cast(cast(DataValue as decimal) as int) as 'CallNo',EventFk
FROM dbo.[EventData] a
INNER JOIN dbo.DataItem b ON a.EventDataId =b.EventDataFk
WHERE b.[EventDataFK] = a.EventDataID
AND DataKey = N'AuditCallRef'
AND DataValue LIKE '%[^0-9]%'
Will show if...
April 28, 2011 at 6:12 am
Early thoughts.
Is the command running as the account you think it is?
If you genuinely have sysadmin then CREATE LOGIN shouldn't give permission erros.
April 28, 2011 at 1:29 am
It is expected when the FROM clause is fed by a query in brackets that an alias is given.
Even though the X is not explicitly referenced by the rest of...
April 27, 2011 at 1:25 pm
What is the query you are running?
Without an explicit ORDER BY clause, it is by design that queries are not guaranteed to return data in a set order.
Even (i think)...
April 27, 2011 at 1:17 pm
A pipe within a column would give simply a column with a pipe in it 🙂
It probably wont be what you want but the db can handle it.
So assuming thats...
April 22, 2011 at 2:17 am
Typically wouldnt install on a production box.
VS is a development environment and its results such as ssis packages can be deployed to wherever they need to be from the ide.
However...
April 8, 2011 at 12:35 am
Best place to start would be the WMI, counters provided within windows.
Have a root around.
There are loads of Physical Disk performance counters that can be used although they'll report the...
April 3, 2011 at 12:56 pm
SQL Server Profiler will monitor queries sent to the server.
It can certainly do user name filters, so maybe it will meet your needs.
March 31, 2011 at 10:57 am
Seconded for TOAD.
At about £400 notes it's possibly easier to sell to the boss than ERWin.
Couldn't give a genuine comparison of TOAD vs ERWin, however I assume ERWin does something...
March 29, 2011 at 12:48 pm
Also, there may be a little bit of back-end tweaking that can be done, whilst using views to present the same logical output to the application. Not knowing the structure...
March 29, 2011 at 12:45 pm
Sometimes when we do a large load of data the system grinds to a halt until we rebuild the database
Just a thought, do you drop the indexes prior to a...
March 29, 2011 at 12:42 pm
Viewing 15 posts - 16 through 30 (of 47 total)