Viewing 15 posts - 1,786 through 1,800 (of 2,356 total)
Ed B (5/13/2016)
I think you need the Access Database Engine.https://www.microsoft.com/en-us/download/details.aspx?id=13255
This is worth reading.
http://www.madeiradata.com/load-data-excel-ssis-32-bit-vs-64-bit/
Why do they need the Access database engine for an Excel spreadsheet?
SSIS has a built in...
Michael L John
If you assassinate a DBA, would you pull a trigger?
To properly post on a forum:
http://www.sqlservercentral.com/articles/61537/
May 13, 2016 at 2:25 pm
jasona.work (5/12/2016)
Michael L John (5/12/2016)
Ed Wagner (5/12/2016)
Lynn Pettis (5/12/2016)
J Livingston SQL (5/12/2016)
Lynn Pettis (5/12/2016)
And Post Padder is still at it.yeah....about 15 today
We can call him pp. :w00t:
Agreed. Now...
Michael L John
If you assassinate a DBA, would you pull a trigger?
To properly post on a forum:
http://www.sqlservercentral.com/articles/61537/
May 12, 2016 at 12:54 pm
Ed Wagner (5/12/2016)
Lynn Pettis (5/12/2016)
J Livingston SQL (5/12/2016)
Lynn Pettis (5/12/2016)
And Post Padder is still at it.yeah....about 15 today
We can call him pp. :w00t:
Agreed. Now where's that launcher? ...
Michael L John
If you assassinate a DBA, would you pull a trigger?
To properly post on a forum:
http://www.sqlservercentral.com/articles/61537/
May 12, 2016 at 11:47 am
Lynn Pettis (5/10/2016)
Michael L John
If you assassinate a DBA, would you pull a trigger?
To properly post on a forum:
http://www.sqlservercentral.com/articles/61537/
May 10, 2016 at 12:57 pm
1. Create a new database role, call it something like db_view_schema.
2. Add the users/groups into this role.
3. Grant VIEW DEFINITION to the desired schema's contained in the database to this...
Michael L John
If you assassinate a DBA, would you pull a trigger?
To properly post on a forum:
http://www.sqlservercentral.com/articles/61537/
May 10, 2016 at 7:19 am
monilps (5/9/2016)
Michael L John
If you assassinate a DBA, would you pull a trigger?
To properly post on a forum:
http://www.sqlservercentral.com/articles/61537/
May 9, 2016 at 3:35 pm
Ed Wagner (5/6/2016)
Brandie Tarvin (5/6/2016)
And, oh, we have...
Michael L John
If you assassinate a DBA, would you pull a trigger?
To properly post on a forum:
http://www.sqlservercentral.com/articles/61537/
May 6, 2016 at 1:05 pm
What have you tried? Can you post this?
Also, we cannot see your data or your schema. Can you follow the link in my signature so we can properly...
Michael L John
If you assassinate a DBA, would you pull a trigger?
To properly post on a forum:
http://www.sqlservercentral.com/articles/61537/
May 5, 2016 at 9:51 am
Well, you could take the code that was provided and change the name from "t1" to "test" and try to figure it out.
Michael L John
If you assassinate a DBA, would you pull a trigger?
To properly post on a forum:
http://www.sqlservercentral.com/articles/61537/
May 5, 2016 at 9:29 am
In the slow plan, there is a RID lookup on the table [DB_FRMIS_det].[dbo].[MI_ORT_OrderRowTransaction_T]
Could there be a missing clustered index?
I suggest you compare the index structures for all of...
Michael L John
If you assassinate a DBA, would you pull a trigger?
To properly post on a forum:
http://www.sqlservercentral.com/articles/61537/
April 30, 2016 at 6:37 am
Learner44 (4/28/2016)
Michael L John
If you assassinate a DBA, would you pull a trigger?
To properly post on a forum:
http://www.sqlservercentral.com/articles/61537/
April 28, 2016 at 1:17 pm
Couldn't this have been simplified with the REPLICATE function?
SELECT REPLICATE(@CharsTobePaddedWith, @PadLenght) + @PaddedChar
Michael L John
If you assassinate a DBA, would you pull a trigger?
To properly post on a forum:
http://www.sqlservercentral.com/articles/61537/
April 28, 2016 at 12:34 pm
I'm still wondering why you need to do this.
Michael L John
If you assassinate a DBA, would you pull a trigger?
To properly post on a forum:
http://www.sqlservercentral.com/articles/61537/
April 28, 2016 at 11:47 am
Luis Cazares (4/28/2016)
Learner44 (4/28/2016)
Only one question now!!How I can become like you pro in SQL
Please answer. I am ready to do whatever it takes.
BY the way that solution worked fine.
Read...
Michael L John
If you assassinate a DBA, would you pull a trigger?
To properly post on a forum:
http://www.sqlservercentral.com/articles/61537/
April 28, 2016 at 11:46 am
This may work
ALTER PROCEDURE Doc124NEW_new
(
@DMIGRATIONNEW nvarchar(255)
)
AS
SET NOCOUNT ON
SET XACT_ABORT ON
DECLARE @ErrorMessage varchar(2048);
DECLARE @ErrorSeverity INT;
DECLARE @ErrorState INT;
DECLARE @sql AS NVARCHAR(MAX)
DECLARE @Count int = 0
BEGIN TRY
BEGIN...
Michael L John
If you assassinate a DBA, would you pull a trigger?
To properly post on a forum:
http://www.sqlservercentral.com/articles/61537/
April 28, 2016 at 10:45 am
Viewing 15 posts - 1,786 through 1,800 (of 2,356 total)