Viewing 15 posts - 976 through 990 (of 4,272 total)
SELECT name FROM sys.tables WHERE name LIKE 'SomePatternAtTheStartOfTheTableName%'
Will give you all tables that start with "SomePatternAtTheStartOfTheTableName"
Clear? Sorry it took a while to get back I've been EXTREMELY busy..
CEWII
October 17, 2011 at 12:24 pm
Ah, you know whats funny Lowell, I mentioned releasing my monitoring and logging project to codeplex way up in the chain, I am only now about ready to actually release...
October 17, 2011 at 12:21 pm
sqlfriends (10/14/2011)
Also if I can setup an alert notification using Policy management in SQL server to do similar thing like this?
I mean to notify the operator...
October 17, 2011 at 12:18 pm
DNS ONLY (REPEAT ONLY) handles name resolution, it does NOT handle port assignments which are important for named instances.
What this means is that if you are current pointed at an...
October 17, 2011 at 12:09 pm
It is a normal stored procedure stored in the master database that the sp_procoption sproc was used to make autotun. The sproc should not have any parameters. And...
October 14, 2011 at 4:22 pm
Never seen that done, but I offer a different path.
It sounds like you want to walk through a set of tables based on their prefix, you could use a regular...
October 14, 2011 at 4:17 pm
well started or restarted sure, look up autorun stored procedures. You could write one that sends an email and it would be triggered on those two cases. Stopped...
October 14, 2011 at 4:10 pm
Gents,
I would not use any of these methods, I would use a SQLCLR to pull the file in.. And lo and behold we have been talking about some SQLCLR...
October 14, 2011 at 4:07 pm
You are in luck, I just discovered this myself.
You have Policy Based Managed enabled and it is out of compliance, when the enabled policies are all complied with it disappears.
CEWII
October 14, 2011 at 3:57 pm
From separate post..
They did hand us a very powerful dev platform in the SQLCLR. I think they just left us to our own devices on file handling. Elliott took the...
October 14, 2011 at 3:54 pm
opc.three (10/13/2011)
Elliott Whitlow (10/13/2011)
Given a particular system it may make as much if not more sense to handle the file operations, whether...
October 13, 2011 at 9:00 pm
battery_acid_h (10/13/2011)
User::EntryNo, type is Int32, value is 0
User::CompanyCode is String, Value is 'COMPANY'
Execute sql task has the following query
set @EntryNo = (-1)
set @EntryNo= (select EntryNo...
October 13, 2011 at 8:40 pm
IF @@ERROR was 0 (zero) it could be asusmed all was well.
However, can I ask a different question, why do you want to go about building the command dynamically?
CEWII
October 13, 2011 at 3:31 pm
opc.three (10/13/2011)
October 13, 2011 at 12:06 pm
I am unaware of any option or process which would allow you to run a package without validation, the closest you can come is the delayed validation.
I am curious...
October 13, 2011 at 11:05 am
Viewing 15 posts - 976 through 990 (of 4,272 total)