Viewing 15 posts - 7,861 through 7,875 (of 8,760 total)
SQLRNNR (7/9/2014)
Eirikur Eiriksson (7/9/2014)
Grant Fritchey (7/9/2014)
Where does my data come from?Well the mommy data and the daddy data loved each other very much so....
...and now the Backups are coming for...
July 9, 2014 at 8:54 am
KGJ-Dev (7/9/2014)
Thakns for your reply and when i execute am getting sysntax error
declare @IdEmployee int = 11,@Name varchar(20) = 'Peter';
EXEC('SELECT *
...
July 9, 2014 at 8:37 am
Grant Fritchey (7/9/2014)
Where does my data come from?Well the mommy data and the daddy data loved each other very much so....
...and now the Backups are coming for a visit this...
July 9, 2014 at 8:20 am
Grant Fritchey (7/9/2014)
I agree with the steps Hanshi laid out...
July 9, 2014 at 8:15 am
Quick thought, place the function in a cte and use the output in the insert.
😎
July 9, 2014 at 5:54 am
This isn't too much of a challenge and definitely NOT a question of transferring 7TB in 30 min. Here is a quick suggestion:
a. Do a full backup of the 2K...
July 9, 2014 at 1:13 am
solomon.jernas (7/9/2014)
is it possible to migrate 7TB database within 30 minutes ?if yes, what is the best way ?
Regards
Jernas
Without more information, it is impossible to say. Any kind...
July 9, 2014 at 12:51 am
whitesql (7/8/2014)
Thank you, Yes, Compat level is 2000. How can I see average fragmentation on my indexes without changing the compat level of the database?Thanks
2K doesn't like the db_id...
July 9, 2014 at 12:13 am
Few things to improve, firstly you must cast the @IdEmployee to a varchar
cast(@IdEmployee as varchar(12))
Next is the @Name, has to enclosed with apostrophe/single quote
char(39) + char(39) + @Name + char(39)...
July 8, 2014 at 11:07 pm
This is most likely because the compatibility level for the database is less than 2005(90), nothing wrong with this code.
😎
July 8, 2014 at 10:40 pm
No need to complicate things, the only thing needed here is correct window specification for the row_number function.
😎
;WITH HISTORY_BASE AS
(
SELECT
...
July 8, 2014 at 10:26 pm
The Dixie Flatline (7/8/2014)
GilaMonster (7/7/2014)
EVE OnlineThat's one of his more comprehensible posts.
Wolfkill needs to know if there are tanks in EVE Online, as well as bombers.
Tanks are very important. ...
July 8, 2014 at 1:34 pm
Simple things like snapshot isolation could do wonders in this kind of situation:-D
😎
July 8, 2014 at 1:12 pm
Francis S. Mazeika (7/8/2014)
I run the same query\jobs using sp_send_dbmail in 2008 and...
July 8, 2014 at 1:05 pm
jarid.lawson (7/8/2014)
July 8, 2014 at 12:53 pm
Viewing 15 posts - 7,861 through 7,875 (of 8,760 total)