Viewing 15 posts - 4,906 through 4,920 (of 10,144 total)
What are your autogrowth settings? If you're not sure about the effect autogrowth can have on performance and how and why to change the settings, this excellent article [/url]by Greg...
April 8, 2013 at 3:42 am
Krishna1 (4/7/2013)
...When my process is going on, its very difficult to open any other winow/exploer ....
Are you running this process on <local>?
April 8, 2013 at 1:36 am
rodjkidd (4/5/2013)
Steve Jones - SSC Editor (4/5/2013)
Cadavre (4/5/2013)
rodjkidd (4/4/2013)
Hotel booked for SQLBits. Almost forgot all about that so a nice refreshing 20 minute walk in the morning!
I'm in Castle Marina...
April 5, 2013 at 8:43 am
Cadavre (4/5/2013)
ChrisM@Work (4/5/2013)
You've been spending waaaay too much time in front of a computer 😀
I can find at least one person that would not only agree with you, but would...
April 5, 2013 at 7:36 am
Cadavre (4/5/2013)
ChrisM@Work (4/5/2013)
13.9 miles. You have to like your whisky.Evidently my geography is a little off 😀
You've been spending waaaay too much time in front of a computer 😀
April 5, 2013 at 7:29 am
Cadavre (4/5/2013)
ChrisM@Work (4/5/2013)
April 5, 2013 at 7:22 am
Grant Fritchey (4/5/2013)
ChrisM@Work (4/5/2013)
April 5, 2013 at 7:13 am
rodjkidd (4/5/2013)
Cadavre (4/5/2013)
rodjkidd (4/5/2013)
So I take it you will jogging there and back then? 😀
I hate distances like that. Too far to walk, to short a drive for the car...
April 5, 2013 at 6:58 am
Cadavre (4/5/2013)
rodjkidd (4/4/2013)
Hotel booked for SQLBits. Almost forgot all about that so a nice refreshing 20 minute walk in the morning!
I'm in Castle Marina Premier Inn, which according to Google...
April 5, 2013 at 6:16 am
Why don't you simply concatenate into fixed-width, like this?
DROP TABLE #table_x
CREATE TABLE #table_x (Empno INT IDENTITY(3141593,31415), FirstName VARCHAR(25), LastName VARCHAR(25))
INSERT INTO #table_x (FirstName, LastName) VALUES
(('Francis'),('Bacon')),
(('Jean'),('Baptiste')),
(('Clarence'),('Birdseye')),
(('Charles'),('Babbage')),
(('John'),('Logie Baird'))
SELECT *,
Concatenated_FixedWidth...
April 5, 2013 at 3:41 am
lda17_04 (4/4/2013)
I need a database from an Insurance company, but they don't want to give it because it has a column with the ID number of each patient and their...
April 5, 2013 at 3:19 am
Use ROW_NUMBER, something like this:
USE SQLsafeRepository;
;WITH UnfilteredResult AS (
SELECT CASE WHEN LEN(p4.[name]) = 0 THEN p5.[name] ELSE p5.[name] + '\' + p4.[name] END AS server_instance_name
,p3.[name] [database_name]
,p4.[name] AS 'instance'
,p5.[name] AS 'server'
,p2.start_datetime
,p2.action_status
,p1.backup_type
,p2.utc_offset
,DATEDIFF(ss,p2.start_datetime,p2.end_datetime)...
April 5, 2013 at 1:56 am
sqlguy-736318 (4/4/2013)
'Microsoft', 'Seattle'
'Microsoft', 'Portland'
In this scenario, row #1 would get updated but row...
April 5, 2013 at 1:41 am
Post the actual execution plan of the "Big Query" as a .sqlplan attachment.
April 5, 2013 at 1:23 am
Viewing 15 posts - 4,906 through 4,920 (of 10,144 total)