Viewing 15 posts - 6,211 through 6,225 (of 13,874 total)
SQL-DBA-01 (12/12/2016)
If I need to list out all the SSIS packages under the Integration services catalog folder how to get the details by writing simple T SQL and...
December 12, 2016 at 11:18 am
Tim Mitchell (12/9/2016)
I've noticed the same thing on multiple machines, and I've heard similar complaints from others. I haven't yet found a fix.
Thanks, Tim. It's reassuring to know that I...
December 10, 2016 at 6:55 am
alicesql (12/9/2016)
SELECT SUBSTRING(MAX([InvoiceDate]),1,2) as Monthsql
FROM BJmm (Table has a string date field per recipient requirement)
The Sql Source...
December 9, 2016 at 11:31 am
alex.sqldba (12/9/2016)
If I set the Transaction Option to 'required' rather than supported, I get an error about being unable to start a distributed transaction.
Edit: This is...
December 9, 2016 at 6:29 am
alex.sqldba (12/9/2016)
I've double confirmed that is the case using oledb provider as well as ado.net.It's annoying!
I had always assumed that the whole thing was a single implicit transaction. I'm not...
December 9, 2016 at 5:40 am
alex.sqldba (12/9/2016)
However.
I am using the ADO.NET provider. And it's working fine, except in one particular occurrence: Should...
December 9, 2016 at 4:51 am
alex.sqldba (12/8/2016)
I have an archive routine that runs every night, it inserts some rows and then performs a delete. Basic stuff.
I have had to move the archive database to...
December 8, 2016 at 5:34 pm
You need to make the updates conditional. Add something like
WHERE a.load_id <> q.load_id or a.load_id is null
to both queries.
December 8, 2016 at 12:58 pm
... we need the queries to run like this:
You still haven't explained why.
December 8, 2016 at 11:03 am
Lowell, that's a neat trick!
Next step would be some refinement to return the actual SQL needed, ready for cut & paste. This sort of thing (borrowing your code):
IF OBJECT_ID('tempdb..#temp', 'U')...
December 8, 2016 at 10:17 am
sanjaydut26 (12/8/2016)
Thanks John, but no such files. 🙂Thanks
Sanjay
I think you are out of luck. There is no magic 'reduce the size of files without shrinking them' command.
December 8, 2016 at 8:23 am
First thing I'd suggest is removing this line:
INNER JOIN dbo.Drops D ON J.JobID = D.JOBID
As it is no...
December 8, 2016 at 7:26 am
padmakumark26 (12/8/2016)
Like select * from table .
But i cannot access like that it is...
December 8, 2016 at 7:15 am
padmakumark26 (12/8/2016)
I created a user (User1) and Schema (shema1). Made schema1 as defult user schema.Now i cannot access table name without schema1.table name. Select * from table don't work
I...
December 8, 2016 at 6:38 am
December 7, 2016 at 2:11 pm
Viewing 15 posts - 6,211 through 6,225 (of 13,874 total)