Viewing 15 posts - 391 through 405 (of 1,158 total)
Using management studio, run these to check on the current space used. You should see a difference if there is an increase in data. If you know some...
May 22, 2012 at 10:20 pm
S_Kumar_S (5/22/2012)
one for remaining years(containing data which is usually not queried).
Not ideal as merging partitions would be an IO intensive operation, you would be better off keeping the extra partitions.
S_Kumar_S...
May 22, 2012 at 10:31 am
The point is you cannot apply transaction log backups to an OS level disk snapshot as suggested in the original post.
Gary Bourne-389258 (5/18/2012)
May 21, 2012 at 6:11 am
Lowell (5/18/2012)
MysteryJimbo (5/18/2012)
*cringe*
Sorry. I've seen xp_cmdshell and similar methods like that before. Oooo and a cursor. 🙂
the knee-jerk reactions to cursors and xp_cmdshell have their place, but...
May 18, 2012 at 2:46 pm
Lowell (5/18/2012)
Thsi requires xp_cmdshell to get the list...
May 18, 2012 at 2:28 pm
vhall 67612 (5/18/2012)
so i have 1 default and 1 named and only 1 sql cluster i cant have two.
I'm not sure if Im being clear enough on the terminology....
May 18, 2012 at 1:35 pm
The easiest way is simply to use these parameters from send_dbmail.
@query = 'SELECT * FROM @tablevariable'
,@attach_query_result_as_file = 1
May 18, 2012 at 1:24 pm
Jeffrey Williams 3188 (5/18/2012)
May 18, 2012 at 1:21 pm
Pinal Dave has done a useful one for a single file
http://blog.sqlauthority.com/2011/05/12/sql-server-import-csv-file-into-database-table-using-ssis/%5B/url%5D
There are several references for using a for each container. This is the first one from google.
http://www.sqlis.com/sqlis/post/Looping-over-files-with-the-Foreach-Loop.aspx
So the theory...
May 18, 2012 at 1:18 pm
tt-615680 (5/18/2012)
While the Database was set to Full Recovery, I run the following script
INSERT INTO NewTable
(
column1,
column2
)
SELECT
column1,
column2
FROM
table1 app
INNER JOIN table2...
May 18, 2012 at 10:39 am
ByronOne (5/18/2012)
I have a number of csv files in one folder location. I would like to import them into a single SQL Table. What would be the method...
May 18, 2012 at 10:36 am
Just to be clear we are talking SQL instances running on Windows clusters.
You can multiple instances running on a single Windows cluster. Easily achieved and completely configurable.
I would...
May 18, 2012 at 10:24 am
You're only options is to manage the log file by backups, simple mode or a code rewrite.
Switching to simple mode will only help if you import method uses individual transactions...
May 18, 2012 at 10:19 am
You can also set up a table valued parameter for passing between stored procedures and UDF's.
May 18, 2012 at 10:13 am
Our weekly 5TB database backup completes in 5 hours. The daily differentials complete in around 40 minutes. 5 minute Transaction log backups complete in around 20-40 seconds.
Data used grows...
May 18, 2012 at 10:10 am
Viewing 15 posts - 391 through 405 (of 1,158 total)