Viewing 15 posts - 136 through 150 (of 193 total)
I just found this, let me try it and will let you know how it goes.
March 6, 2015 at 2:32 am
I'm just pointing out the things to look into, not saying thats the only way to do it, even if it might have sound like that:hehe:
March 5, 2015 at 3:57 am
- are you getting an error message?
- did you remember to add
using System.Data.OleDb;
at the beginning?
- did you try to debug and find out at which...
March 4, 2015 at 12:03 pm
I was actually doing same thing last week, but instead of passing whole connection string i passed all the details in separate variables. Anyway i have a script task in...
March 4, 2015 at 8:55 am
Options -> Query Execution -> SQL Server -> General -> SET ROWCOUNT
Default value should be 0
March 4, 2015 at 6:23 am
What about a DDL trigger that would fire up on ALTER_PROCEDURE and if it is sp1 then inform about updating sp2. I can't think of other way at the moment.
February 27, 2015 at 2:46 am
I'm a DB Dev in a very specyfic eniviroment. Our company specializes in building stand alone QA/Process control machinery, that is shipped to customers factories and used there. every machine...
February 27, 2015 at 1:54 am
I use Ola's maintenance solution for backups (and more) on my SQLExress instances and can't say a bad word about it. just schedule a batch file in your windows task...
February 26, 2015 at 8:43 am
Looks almost exactly as the example under this link www.simple-talk.com/sql/t-sql-programming/sql-server-cte-basics/[/url]
February 26, 2015 at 8:27 am
USE AAA
GO
create table A(
Rundate DATETIME NOT NULL DEFAULT(GETDATE())
,objname varchar(100)
,rows varchar (10)
,reserved varchar(10)
,data varchar(10)
,index_size varchar(10),
unused varchar(10))
Go
insert into A (
objname
,rows
,reserved
,data
,index_size
,unused)
exec AdventureWorks..sp_spaceused 'AdventureWorks.person.address'
February 25, 2015 at 6:50 am
Shame...
I might visit customers site, set it up and would like it to stay intact, the only way customer would affect the package is by using provided configuration file.
I was...
February 25, 2015 at 4:07 am
Bouke Bruinsma (2/23/2015)
February 23, 2015 at 6:42 am
I'm going to get my 7 and 5 y/o their own first PC, nothing powerfull, just something to be able to watch movies and stuff on internet. Maybe minecraft will...
February 23, 2015 at 5:58 am
Thank you for help, it's working now!
In the article you've provided there is one thing i believe is missing, I couldn't find the step that would actually change the connection...
February 16, 2015 at 5:27 am
It looks like something i'm looking for! I'll give it a try and will let you know about the outcome. Thank you.
February 16, 2015 at 3:03 am
Viewing 15 posts - 136 through 150 (of 193 total)