Viewing 15 posts - 961 through 975 (of 7,191 total)
Not much you can do after the fact. Look at the time that the log last grew (it will usually be the last modify time of the physical file). Where...
January 22, 2018 at 2:16 am
How about this? It's probably possible to tidy it up so it only does one table scan, instead of two, but I'm afraid I ran out of time
January 19, 2018 at 9:40 am
January 19, 2018 at 9:32 am
Don't run DB tuning advisor. Use the missing index DMVs instead. Query tuning isn't easy - I hope you don't mind my saying that I think you might be in...
January 19, 2018 at 4:24 am
Start by typing "missing index" into your favourite search engine. There'll be plenty of material there for you to consider. Post back if there's anything in particular that you don't...
January 19, 2018 at 3:16 am
So it's grown to 330GB but the original 300GB isn't being used? I don't really understand... unless this database is used as a staging area where large amounts of data...
January 19, 2018 at 2:21 am
Ivan
If you know, or suspect, that the database will eventually grow to 300GB, you may as well start it off at that size. That's preferable to risking physical...
January 18, 2018 at 7:18 am
Paul
Yes, it's possible. It would help if you could post some table DDL (CREATE TABLE statement(s)) and sample data (INSERT statement(s)). What other relationships are there - mother,...
January 18, 2018 at 7:13 am
Jacek
I think the problem is that you have one or more values of Slownik_ID_FK in Korekty that don't correspond to a value of Slownik_ID in Slownik. You'll need...
January 18, 2018 at 4:39 am
January 18, 2018 at 4:35 am
I don't think he's reinvented the wheel, so much as copied it from here.
John
January 18, 2018 at 4:05 am
Which THROW statement are you referring to? Strikes me that if there's an error, such as an arithmetic overflow, then control will immediately be passed to the CATCH block and...
January 18, 2018 at 3:59 am
RandomStream - Wednesday, January 17, 2018 9:49 AMIt will require additional log space as well.
Are you sure about that - isn't sufficient...
January 17, 2018 at 9:58 am
They're the ones auto-generated when you use a column that doesn't already have statistics on it in a query.
John
January 17, 2018 at 7:16 am
The stored procedure and the ad hoc statement don't produce any output - they merely insert rows into a table. (Actually, the statement won't event do that - it'll return...
January 17, 2018 at 5:40 am
Viewing 15 posts - 961 through 975 (of 7,191 total)