Viewing 15 posts - 31 through 45 (of 135 total)
Yeah, I just finished it, added checks for the conncetion strings to make sure it can connect and if it cant to log what it cant connect to. I did...
January 21, 2020 at 5:06 pm
I was able to store multiple values from my sql server table in the object variable, I'm currently storing: Connection String, Server Name, Server ID and Instance ID.
In reality the...
January 21, 2020 at 1:39 pm
Ok how I've done this in the past.
Create a variable of type "Object" to store the ADO.NET connection string table
Create a variable of type "String" to store the individual...
January 20, 2020 at 3:52 pm
The RESTORE statement looks OK, although I think I'd put an explicit NORECOVERY in the differential restore. My opinion doesn't count, though - it's whether it works when you...
January 15, 2020 at 3:59 pm
Okay, just FYI you may also run into some permissions issues if the service accounts for your dev environment (hopefully aren't) the same as the service accounts for your production...
January 14, 2020 at 8:49 pm
What I did in this situation is I created a powershell script to grab the latest backup from the prod share and copy it to the location and then have...
January 14, 2020 at 8:34 pm
If you're just looking for todays date you shouldn't need the dateadd(day,0,getdate()) at all you would just need the getdate()..
I've used the cast that I posted above in quite a...
January 14, 2020 at 7:35 pm
I'm a noob, but what if you casted them as date so it doesnt include the time portion?
where CAST([TransactionDate] AS DATE)=CAST(GETDATE() AS DATE)
That seems like a slick solution. ...
January 14, 2020 at 6:47 pm
I'm a noob, but what if you casted them as date so it doesnt include the time portion?
where CAST([TransactionDate] AS DATE)=CAST(GETDATE() AS DATE)
January 14, 2020 at 6:37 pm
I can't speak to #1 but I've worked with an AG in my environment ( I just didn't set it up, but I have had to recover it )
#3/4 personally,...
January 6, 2020 at 6:41 pm
Seems to me, that rather than giving them access to this proc, there should be a view created with what they supposedly need access to.
January 6, 2020 at 6:33 pm
One of the first reasons I came to this site is because I was experiencing a TON of corruption going on in my databases, literally every night,...
January 3, 2020 at 8:33 pm
Unless you're using TDE then compression prior to 2016 can be bad. ( or so I've read, I don't care to tempt it myself )
January 3, 2020 at 8:17 pm
I personally haven't seen it, and I don't know that the per cpu matters, but splitting the data files across multiple physical drives could act as a sort of makeshift...
January 3, 2020 at 8:13 pm
Hey Jon,
I troll these forums looking at other peoples issues so I can have a better understanding when I run into issues of my own.. That being said I'm trying...
January 3, 2020 at 3:11 pm
Viewing 15 posts - 31 through 45 (of 135 total)