Viewing 15 posts - 7,876 through 7,890 (of 26,490 total)
Sean Lange (4/22/2013)
Lynn Pettis (4/22/2013)
set nocount on;
--===== Create the timer and bit-bucket variables and start the timer.
DECLARE @BitBucket sysname; --< change or...
April 22, 2013 at 10:53 am
You can also use this as a test harness:
set nocount on;
--===== Create the timer and bit-bucket variables and start the timer.
DECLARE @BitBucket sysname; --< change or add variables needed here...
April 22, 2013 at 10:41 am
Here's a tip, if you have typed a long post copy it before you post so you can paste it in a new post if your post time out. ...
April 21, 2013 at 7:56 pm
Like this:
CREATE FUNCTION [dbo].[ifn_NumOccurrences]
(
@sourceString varchar(1000),
@searchString varchar(10)
)
RETURNS TABLE
AS
return
SELECT numTimes = (DATALENGTH(@sourceString) - DATALENGTH(REPLACE(@sourceString COLLATE Latin1_General_BIN2, @searchString, ''))) / DATALENGTH(@searchString);
GO
April 19, 2013 at 8:53 pm
Chris Hewitt-261101 (4/19/2013)
Hi LynnDoes this number definitely represent the number of bytes needed?
Chris
As I said, I was taking a SWAG at what it meant. I wasn't have much luck...
April 19, 2013 at 8:49 pm
As I said, you may want to look at the process and the data. It looks like it thinks it needs 130000 GB of disk space to run a sort.
April 19, 2013 at 3:42 pm
Chris Hewitt-261101 (4/19/2013)
17gb of disk space left, so don't surely space cannot be the issue then?
This is on a client old server - only 3.75 gb of ram. Could...
April 19, 2013 at 2:53 pm
You may want to look at what it is your process is doing and with how much data. If my swag is correct you need 131,081+ GB of disk...
April 19, 2013 at 2:38 pm
Chris Hewitt-261101 (4/19/2013)
When running an SSIS package I get the following message:
SSIS Error Code DTS_E_OLEDBERROR. An OLE DB error has occurred. Error code: 0x80004005. An OLE DB...
April 19, 2013 at 2:34 pm
muthyala_51 (4/19/2013)
I am looking more into I/O error what we received- looks to be DISK...
April 19, 2013 at 11:35 am
Sqlism (4/19/2013)
Hi,
I did partitioning on a table on date column as
FILEGROUP= APPLE
.ndf FILES= APPLE_2010, APPLE_2011, APPLE_2012, APPLE_2013
now i am trying to implement sliding window partitioning...
April 19, 2013 at 11:26 am
try this:
DECLARE MY_CURSOR Cursor
FOR
SELECT [DB_NAME],[SCHEMA_NAME],[TABLE_NAME],[COLUMN_NAME] FROM dbo.Data_Profile_Stats
Open My_Cursor
DECLARE @DB_NAME nvarchar(500),@SCHEMA_NAME nvarchar(500),@TABLE_NAME nvarchar(500),@COLUMN_NAME nvarchar(500), @QUERY NVARCHAR(MAX)
DECLARE @MAX_NUMBER NVARCHAR(255),
@MIN_NUMBER INT,
...
April 19, 2013 at 11:23 am
Maybe the user just wanted to see if it could be done? Other than that, based on the structure and the data I see no reason for th FK.
April 19, 2013 at 11:13 am
The structure is only part of the picture, you need to look at the data as well.
April 19, 2013 at 10:52 am
Instead of giving us pieces, how about the whole pie.
Can you show us how these queries are being executed? Are they a part of a singe stored procedure, or...
April 19, 2013 at 10:49 am
Viewing 15 posts - 7,876 through 7,890 (of 26,490 total)